diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 0000000..030bb02 --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,52 @@ +name: checks + +on: [push, workflow_dispatch] + +env: + GO_VERSION: 1.17 + GOLANGCI_LINT_VERSION: v1.43.0 + +jobs: + go-matrix: + name: Resolve Modules + runs-on: ubuntu-latest + outputs: + matrix: ${{ steps.set-matrix.outputs.matrix }} + steps: + - uses: actions/checkout@v2 + - id: set-matrix + 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)]} + go-lint: + name: lint + runs-on: ubuntu-latest + strategy: + matrix: ${{ fromJson(needs.go-matrix.outputs.matrix) }} + env: + GOFLAGS: -mod=readonly + GOPROXY: https://proxy.golang.org + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: ${{ env.GO_VERSION }} + - uses: golangci/golangci-lint-action@v2 + with: + version: ${{ env.GOLANGCI_LINT_VERSION }} + working-directory: ${{ matrix.folder }} + - uses: github/super-linter@v3 + env: + DEFAULT_BRANCH: main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + VALIDATE_ALL_CODEBASE: false + VALIDATE_JSCPD: false + VALIDATE_GO: false + - run: go test -v -cover -coverprofile=coverage.txt -covermode=atomic ./... + env: + CGO_ENABLED: 0 + - uses: codecov/codecov-action@v2 + with: + files: coverage.txt + fail_ci_if_error: true # optional (default = false) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index a60cbca..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: CI - -on: - push: - branches: - - main - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - env: - GOFLAGS: -mod=readonly - GOPROXY: https://proxy.golang.org - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Unshallow - run: git fetch --prune --unshallow - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.17 - - - name: golangci-lint - uses: golangci/golangci-lint-action@v2 - with: - skip-go-installation: true - - - name: Test - run: go test ./... diff --git a/.prettierrc.yml b/.prettierrc.yml new file mode 100644 index 0000000..fc4fb7b --- /dev/null +++ b/.prettierrc.yml @@ -0,0 +1,7 @@ +overrides: + - files: '*.yml' + options: + singleQuote: true + - files: '*.json' + options: + singleQuote: false diff --git a/Makefile b/Makefile index 1b9fd1c..4dc6207 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,11 @@ ## === Tasks === +.PHONY: act +## Run github push action +act.push: + @act + .PHONY: check ## Run tests and linters check: test lint @@ -21,6 +26,17 @@ lint: lint.fix: golangci-lint run --fix +.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' \ + -v $(PWD):/tmp/lint \ + github/super-linter + ## === Utils === ## Show help text diff --git a/example/config/main.go b/example/config/main.go index 0ca2264..d408af2 100644 --- a/example/config/main.go +++ b/example/config/main.go @@ -14,9 +14,9 @@ import ( type ( Nested struct { - Int int `yaml:"int"` - Bool bool `yaml:"bool"` - String string `yaml:"string"` + Int int `yaml:"int"` + Bool bool `yaml:"bool"` + String string `yaml:"string"` CamelCaseString string `yaml:"camelCaseString"` SnakeCaseString string `yaml:"snake_case_string"` } diff --git a/example/errors/main.go b/example/errors/main.go index b8f833f..cf0ccc7 100644 --- a/example/errors/main.go +++ b/example/errors/main.go @@ -14,7 +14,6 @@ var ( ) func main() { - err1 := ErrOne err2 := keelerrors.NewWrappedError(err1, ErrTwo) diff --git a/example/go.mod b/example/go.mod index 57687c4..753c73c 100644 --- a/example/go.mod +++ b/example/go.mod @@ -4,7 +4,7 @@ go 1.16 require ( github.com/davecgh/go-spew v1.1.1 - github.com/foomo/keel v0.0.0-00010101000000-000000000000 + github.com/foomo/keel v0.0.0 github.com/golang-jwt/jwt v3.2.2+incompatible github.com/google/uuid v1.1.2 github.com/jackc/pgx/v4 v4.13.0 @@ -13,7 +13,7 @@ require ( go.mongodb.org/mongo-driver v1.5.1 go.opentelemetry.io/otel v0.20.0 go.opentelemetry.io/otel/metric v0.20.0 - go.uber.org/zap v1.16.0 + go.uber.org/zap v1.17.0 ) replace github.com/foomo/keel => ../ diff --git a/example/go.sum b/example/go.sum index d8ab739..feb3cba 100644 --- a/example/go.sum +++ b/example/go.sum @@ -5,13 +5,43 @@ cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6A cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= +cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/firestore v1.6.0/go.mod h1:afJwI0vaXwAG54kI7A//lP/lSPDkQORQuMkv56TxEPU= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= @@ -34,6 +64,7 @@ github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= @@ -47,7 +78,6 @@ github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+Ce github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= @@ -55,30 +85,32 @@ github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I= github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= @@ -88,18 +120,24 @@ github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4s github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8SPQ= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= -github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI= +github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= @@ -137,25 +175,36 @@ github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWe github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ= github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0= github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw= +github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPhW6m+TnJw= github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY= github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= @@ -164,56 +213,78 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.3 h1:fHPg5GQYlCeLIPB9BZqMVR5nR9A+IM5zcgeTdjMYmLA= +github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2 h1:EVhdT+1Kseyi1/pUmXKaFxYsDNy9RQYkMWRH68J/W7Y= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= -github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/consul/api v1.10.1/go.mod h1:XjsvQN+RJGWI2TWy1/kqaE16HrR2J/FWgkYjdZQsX9M= github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/consul/sdk v0.8.0/go.mod h1:GBvyrGALthsZObzUGsfgHZQDXjg4lOjagTIwIR1vPms= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= +github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= @@ -226,10 +297,15 @@ github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= +github.com/hashicorp/mdns v1.0.1/go.mod h1:4gW7WsVCke5TE7EPeYliwHlRUyBtfCwuFwuMg2DmyNY= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= +github.com/hashicorp/memberlist v0.2.2/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/hashicorp/serf v0.9.5/go.mod h1:UWDWwZeL5cuWDJdl0C6wrvrUwEqtQ4ZKBKKENpqIUyk= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= +github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= github.com/jackc/chunkreader v1.0.0 h1:4s39bBR8ByfqH+DKm8rQA3E1LHZWB9XWcrz8fqaZbe0= @@ -291,23 +367,27 @@ github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCV github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= +github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4= github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.9.5 h1:U+CaK85mrNNb4k8BNOfgJtJ/gr6kswUCFj6miSzVC6M= github.com/klauspost/compress v1.9.5/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= @@ -320,30 +400,38 @@ github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= -github.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4= -github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls= +github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= +github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= +github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= +github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= +github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.4.2 h1:6h7AQ0yhTcIsmFmnAwQls75jp2Gzs4iB8W7pjMO+rqo= +github.com/mitchellh/mapstructure v1.4.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= @@ -367,7 +455,6 @@ github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= -github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -384,9 +471,9 @@ github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnh github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.7.0 h1:7utD74fnzVc/cpcyy8sjrlFr5vYpypUixARcHIMIGuI= github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= +github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM= +github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= @@ -395,12 +482,13 @@ github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= +github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= +github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= @@ -413,9 +501,7 @@ github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1: github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= @@ -423,13 +509,11 @@ github.com/prometheus/common v0.18.0 h1:WCVKW7aL6LEe1uryfI9dnEc2ZqNB1Fn0ok930v0i github.com/prometheus/common v0.18.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.6.0 h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3xv4= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= @@ -441,6 +525,7 @@ github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OK github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/sagikazarmark/crypt v0.1.0/go.mod h1:B/mN0msZuINBtQ1zZLEQcegFJJf9vnYIR88KRMEuODE= github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= @@ -455,25 +540,24 @@ github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPx github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= -github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY= +github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= +github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA= +github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= +github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= +github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk= -github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= +github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.9.0 h1:yR6EXjTp0y0cLN8OZg1CRZmOBdI88UcGkhgyJhu6nZk= +github.com/spf13/viper v1.9.0/go.mod h1:+i6ajR7OX2XaiBkrcZJFK21htRk7eDeLg7+O6bhUPP4= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= @@ -492,7 +576,6 @@ github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69 github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4= github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= @@ -504,10 +587,17 @@ github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6 github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d h1:splanxYIlg+5LfHAM6xpdFEAYOk8iySO56hMFq6uLyA= github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= +go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= +go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= +go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= go.mongodb.org/mongo-driver v1.5.1 h1:9nOVLGDfOaZ9R0tBumx/BcuqkbFpyTCU2r/Po7A2azI= go.mongodb.org/mongo-driver v1.5.1/go.mod h1:gRXCHX4Jo7J0IJ1oDQyUxF7jfy19UfxniMS4xxMmUqw= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -515,6 +605,10 @@ go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opentelemetry.io/contrib v0.20.0 h1:ubFQUn0VCZ0gPwIoJfBJVpeBlyRMxu8Mm/huKWYd9p0= go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.20.0 h1:Jt4D26zjgepMVX5GR3NQXINSvnfdrck8BqVzS2hwY+8= @@ -550,19 +644,20 @@ go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqe go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk= go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw= +go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.5.0 h1:KCa4XfM8CWFCpxXRGok+Q0SS/0XBhMDbHHGABQLvD2A= go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= -go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4= +go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4= +go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= -go.uber.org/zap v1.16.0 h1:uFRZXykJGK9lLY4HtgSw44DnIcAM+kRBP7x5m+NpAOM= -go.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ= +go.uber.org/zap v1.17.0 h1:MTjgFu6ZLKvY6Pvaqk97GlxNBuMpV4Hy/3P6tRGlI2U= +go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= @@ -572,19 +667,26 @@ golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210314154223-e6e6c4f2bb5b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 h1:/UOmuWzQfxxo9UtlXMwuQU8CMgg1eZXqTRwkSQJWKOI= golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ= +golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -593,13 +695,23 @@ golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTk golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190930215403-16217165b5de h1:5hukYrvBGR8/eNkX5mdUezrA6JiaEZDtJb9Ei+1LlBs= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -617,16 +729,49 @@ golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 h1:a8jGStKg0XqKDlKqjLrXn0ioF5MH36pT7Z0BRTqLhbk= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -634,6 +779,9 @@ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -660,21 +808,59 @@ golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 h1:SrN+KX8Art/Sf4HNj6Zcz06G7VEz+7w9tdXTPOZ7+l4= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf h1:2ucpDCmfkl8Bd/FsLtiD653Wf96cW37s+iGx93zsu4k= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -709,13 +895,50 @@ golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20200103221440-774c71fcf114 h1:DnSr2mCsxyCE6ZgIkmcWUQY2R5cH/6wL7eIxEmQOMSE= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -729,11 +952,36 @@ google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= +google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= +google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -744,9 +992,50 @@ google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98 google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 h1:z+ErRPu0+KS02Td3fOAgdX+lnPDh/VyaABEJPD4JRQs= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= @@ -759,10 +1048,26 @@ google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= +google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= +google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= +google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0 h1:uSZWeQJX5j11bIQ4AJoj+McDBo29cY1MCoC1wO3ts+c= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.40.0 h1:AGJ0Ih4mHjSeibYkFGh1dD9KJ/eOtZ93I6hoHhukQ5Q= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -771,10 +1076,12 @@ google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzi google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -785,8 +1092,8 @@ gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= -gopkg.in/ini.v1 v1.51.0 h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno= -gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.63.2 h1:tGK/CyBg7SMzb60vP1M03vNZ3VDu3wGQJwn7Sxi9r3c= +gopkg.in/ini.v1 v1.63.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= @@ -797,17 +1104,22 @@ gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3 h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM= honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= diff --git a/example/middlewares/tokenauthfromcookie/main.go b/example/middlewares/tokenauthfromcookie/main.go index d8a4c60..2f987a6 100644 --- a/example/middlewares/tokenauthfromcookie/main.go +++ b/example/middlewares/tokenauthfromcookie/main.go @@ -7,7 +7,7 @@ import ( "github.com/foomo/keel/net/http/middleware" ) -func ExampleTokenAuthFromCookie() { +func main() { svr := keel.NewServer() // get logger diff --git a/example/persistence/mongo/store/entitywithversions.go b/example/persistence/mongo/store/entitywithversions.go index 7c1dfcc..a7acb14 100644 --- a/example/persistence/mongo/store/entitywithversions.go +++ b/example/persistence/mongo/store/entitywithversions.go @@ -33,6 +33,6 @@ func (e *EntityWithVersions) SetVersion(value uint32) { // IncreaseVersion api implementation func (e *EntityWithVersions) IncreaseVersion() uint32 { - e.Version = e.Version + 1 + e.Version++ return e.GetVersion() } diff --git a/example/services/main.go b/example/services/main.go index aebeea4..5e9895c 100644 --- a/example/services/main.go +++ b/example/services/main.go @@ -28,9 +28,9 @@ func main() { l := svr.Logger() // alternatively you can add them manually - //svr.AddServices(keel.NewDefaultServiceHTTPZap()) - //svr.AddServices(keel.NewDefaultServiceHTTPViper()) - //svr.AddServices(keel.NewDefaultServiceHTTPPrometheus()) + // svr.AddServices(keel.NewDefaultServiceHTTPZap()) + // svr.AddServices(keel.NewDefaultServiceHTTPViper()) + // svr.AddServices(keel.NewDefaultServiceHTTPPrometheus()) // create demo service svs := http.NewServeMux() diff --git a/go.mod b/go.mod index 4696b48..9fbcf15 100644 --- a/go.mod +++ b/go.mod @@ -3,16 +3,14 @@ module github.com/foomo/keel go 1.16 require ( - github.com/fsnotify/fsnotify v1.4.9 // indirect github.com/golang-jwt/jwt v3.2.2+incompatible - github.com/golang/protobuf v1.5.2 // indirect github.com/google/uuid v1.1.2 github.com/jackc/pgx/v4 v4.13.0 - github.com/mitchellh/mapstructure v1.1.2 + github.com/mitchellh/mapstructure v1.4.2 github.com/nats-io/nats.go v1.12.0 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.10.0 - github.com/spf13/viper v1.7.1 + github.com/spf13/viper v1.9.0 github.com/stretchr/testify v1.7.0 go.mongodb.org/mongo-driver v1.5.1 go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.20.0 @@ -27,10 +25,7 @@ require ( go.opentelemetry.io/otel/sdk v0.20.0 go.opentelemetry.io/otel/sdk/metric v0.20.0 go.opentelemetry.io/otel/trace v0.20.0 - go.uber.org/zap v1.16.0 - golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 - golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect + go.uber.org/zap v1.17.0 + golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c - golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e // indirect - gopkg.in/yaml.v2 v2.4.0 // indirect ) diff --git a/go.sum b/go.sum index a4b31e6..feb3cba 100644 --- a/go.sum +++ b/go.sum @@ -5,13 +5,43 @@ cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6A cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= +cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/firestore v1.6.0/go.mod h1:afJwI0vaXwAG54kI7A//lP/lSPDkQORQuMkv56TxEPU= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= @@ -34,6 +64,7 @@ github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= @@ -47,7 +78,6 @@ github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+Ce github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= @@ -55,30 +85,32 @@ github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I= github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= @@ -88,19 +120,24 @@ github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4s github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8SPQ= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= -github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI= +github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= @@ -138,25 +175,36 @@ github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWe github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ= github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0= github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw= +github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPhW6m+TnJw= github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY= github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= @@ -166,56 +214,77 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.3 h1:fHPg5GQYlCeLIPB9BZqMVR5nR9A+IM5zcgeTdjMYmLA= +github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2 h1:EVhdT+1Kseyi1/pUmXKaFxYsDNy9RQYkMWRH68J/W7Y= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= -github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/consul/api v1.10.1/go.mod h1:XjsvQN+RJGWI2TWy1/kqaE16HrR2J/FWgkYjdZQsX9M= github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= +github.com/hashicorp/consul/sdk v0.8.0/go.mod h1:GBvyrGALthsZObzUGsfgHZQDXjg4lOjagTIwIR1vPms= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= +github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= @@ -228,10 +297,15 @@ github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= +github.com/hashicorp/mdns v1.0.1/go.mod h1:4gW7WsVCke5TE7EPeYliwHlRUyBtfCwuFwuMg2DmyNY= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= +github.com/hashicorp/memberlist v0.2.2/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= +github.com/hashicorp/serf v0.9.5/go.mod h1:UWDWwZeL5cuWDJdl0C6wrvrUwEqtQ4ZKBKKENpqIUyk= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= +github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= github.com/jackc/chunkreader v1.0.0 h1:4s39bBR8ByfqH+DKm8rQA3E1LHZWB9XWcrz8fqaZbe0= @@ -293,23 +367,27 @@ github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCV github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= +github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4= github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.9.5 h1:U+CaK85mrNNb4k8BNOfgJtJ/gr6kswUCFj6miSzVC6M= github.com/klauspost/compress v1.9.5/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= @@ -322,30 +400,38 @@ github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= -github.com/magiconair/properties v1.8.1 h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4= -github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls= +github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= +github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= +github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= +github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= +github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.4.2 h1:6h7AQ0yhTcIsmFmnAwQls75jp2Gzs4iB8W7pjMO+rqo= +github.com/mitchellh/mapstructure v1.4.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= @@ -369,7 +455,6 @@ github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= -github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -386,9 +471,9 @@ github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnh github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.7.0 h1:7utD74fnzVc/cpcyy8sjrlFr5vYpypUixARcHIMIGuI= github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= +github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM= +github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= @@ -397,12 +482,13 @@ github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= +github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= +github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= @@ -415,9 +501,7 @@ github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1: github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= @@ -425,13 +509,11 @@ github.com/prometheus/common v0.18.0 h1:WCVKW7aL6LEe1uryfI9dnEc2ZqNB1Fn0ok930v0i github.com/prometheus/common v0.18.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.6.0 h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3xv4= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= @@ -443,6 +525,7 @@ github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OK github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/sagikazarmark/crypt v0.1.0/go.mod h1:B/mN0msZuINBtQ1zZLEQcegFJJf9vnYIR88KRMEuODE= github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= @@ -457,25 +540,24 @@ github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPx github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= -github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY= +github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= +github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA= +github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= +github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= +github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk= -github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= +github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.9.0 h1:yR6EXjTp0y0cLN8OZg1CRZmOBdI88UcGkhgyJhu6nZk= +github.com/spf13/viper v1.9.0/go.mod h1:+i6ajR7OX2XaiBkrcZJFK21htRk7eDeLg7+O6bhUPP4= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= @@ -494,7 +576,6 @@ github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69 github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4= github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= @@ -506,11 +587,17 @@ github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6 github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d h1:splanxYIlg+5LfHAM6xpdFEAYOk8iySO56hMFq6uLyA= github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= +go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= +go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= +go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= go.mongodb.org/mongo-driver v1.5.1 h1:9nOVLGDfOaZ9R0tBumx/BcuqkbFpyTCU2r/Po7A2azI= go.mongodb.org/mongo-driver v1.5.1/go.mod h1:gRXCHX4Jo7J0IJ1oDQyUxF7jfy19UfxniMS4xxMmUqw= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -518,6 +605,10 @@ go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opentelemetry.io/contrib v0.20.0 h1:ubFQUn0VCZ0gPwIoJfBJVpeBlyRMxu8Mm/huKWYd9p0= go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.20.0 h1:Jt4D26zjgepMVX5GR3NQXINSvnfdrck8BqVzS2hwY+8= @@ -553,19 +644,20 @@ go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqe go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk= go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/atomic v1.7.0 h1:ADUqmZGgLDDfbSL9ZmPxKTybcoEYHgpYfELNoN+7hsw= +go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.5.0 h1:KCa4XfM8CWFCpxXRGok+Q0SS/0XBhMDbHHGABQLvD2A= go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= -go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4= +go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4= +go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= -go.uber.org/zap v1.16.0 h1:uFRZXykJGK9lLY4HtgSw44DnIcAM+kRBP7x5m+NpAOM= -go.uber.org/zap v1.16.0/go.mod h1:MA8QOfq0BHJwdXa996Y4dYkAqRKB8/1K1QMMZVaNZjQ= +go.uber.org/zap v1.17.0 h1:MTjgFu6ZLKvY6Pvaqk97GlxNBuMpV4Hy/3P6tRGlI2U= +go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= @@ -575,19 +667,26 @@ golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210314154223-e6e6c4f2bb5b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 h1:/UOmuWzQfxxo9UtlXMwuQU8CMgg1eZXqTRwkSQJWKOI= golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ= +golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -596,15 +695,23 @@ golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTk golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190930215403-16217165b5de h1:5hukYrvBGR8/eNkX5mdUezrA6JiaEZDtJb9Ei+1LlBs= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.3.0 h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -622,18 +729,49 @@ golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 h1:DzZ89McO9/gWPsQXS/FVKAlG02ZjaQ6AlZRBimEYOd0= -golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 h1:a8jGStKg0XqKDlKqjLrXn0ioF5MH36pT7Z0BRTqLhbk= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -641,6 +779,8 @@ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ= @@ -668,24 +808,59 @@ golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 h1:SrN+KX8Art/Sf4HNj6Zcz06G7VEz+7w9tdXTPOZ7+l4= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf h1:2ucpDCmfkl8Bd/FsLtiD653Wf96cW37s+iGx93zsu4k= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -720,15 +895,50 @@ golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e h1:4nW4NLDYnU28ojHaHO8OVxFHk/aQ33U01a9cjED+pzE= -golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -742,11 +952,36 @@ google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= +google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= +google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= @@ -757,9 +992,50 @@ google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98 google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 h1:z+ErRPu0+KS02Td3fOAgdX+lnPDh/VyaABEJPD4JRQs= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= @@ -772,10 +1048,26 @@ google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= +google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= +google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= +google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0 h1:uSZWeQJX5j11bIQ4AJoj+McDBo29cY1MCoC1wO3ts+c= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.40.0 h1:AGJ0Ih4mHjSeibYkFGh1dD9KJ/eOtZ93I6hoHhukQ5Q= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -784,10 +1076,12 @@ google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzi google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -798,8 +1092,8 @@ gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= -gopkg.in/ini.v1 v1.51.0 h1:AQvPpx3LzTDM0AjnIRlVFwFFGC+npRopjZxLJj6gdno= -gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.63.2 h1:tGK/CyBg7SMzb60vP1M03vNZ3VDu3wGQJwn7Sxi9r3c= +gopkg.in/ini.v1 v1.63.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= @@ -813,15 +1107,19 @@ gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3 h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM= honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= diff --git a/super-linter.log b/super-linter.log new file mode 100644 index 0000000..9c81f58 --- /dev/null +++ b/super-linter.log @@ -0,0 +1,66417 @@ +super-linter Log +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 06:55:49 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 06:55:49 [INFO] --------------------------------------------- +2021-11-19 06:55:49 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 06:55:49 [INFO] - Image Creation Date:[] +2021-11-19 06:55:49 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 06:55:49 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 06:55:49 [INFO] --------------------------------------------- +2021-11-19 06:55:49 [INFO] --------------------------------------------- +2021-11-19 06:55:49 [INFO] The Super-Linter source code can be found at: +2021-11-19 06:55:49 [INFO] - https://github.com/github/super-linter +2021-11-19 06:55:49 [INFO] --------------------------------------------- +2021-11-19 06:55:49 [DEBUG] --------------------------------------------- +2021-11-19 06:55:49 [DEBUG] Linter Version Info: +2021-11-19 06:55:49 [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 06:55:49 [DEBUG] --------------------------------------------- +2021-11-19 06:55:49 [INFO] -------------------------------------------- +2021-11-19 06:55:49 [INFO] Gathering GitHub information... +2021-11-19 06:55:49 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 06:55:49 [INFO] bypassing GitHub Actions variables... +2021-11-19 06:55:49 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 06:55:49 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 06:55:49 [INFO] -------------------------------------------- +2021-11-19 06:55:49 [INFO] Gathering user validation information... +2021-11-19 06:55:49 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for ARM linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for BASH linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_BASH variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_BASH variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for CPP linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for CSS linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for DART linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 06:55:49 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 06:55:49 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 06:55:49 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for ENV linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for GO linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for HTML linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for JAVA linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for JSCPD linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_JSCPD variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_JSCPD variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for JSON linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for JSONC linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for JSX linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for LATEX linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for LUA linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PERL linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for R linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for RAKU linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for RUBY linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for SHELL_SHFMT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_SHELL_SHFMT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_SHELL_SHFMT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for STATES linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for SQL linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for TSX linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for XML linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 06:55:50 [DEBUG] Defining variables for YAML linter... +2021-11-19 06:55:50 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 06:55:50 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 06:55:50 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 06:55:50 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 06:55:50 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [BASH] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [DART] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 06:55:50 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [GO] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [JSCPD] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [R] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [SHELL_SHFMT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [XML] files in code base... +2021-11-19 06:55:51 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 06:55:51 [DEBUG] --- DEBUG INFO --- +2021-11-19 06:55:51 [DEBUG] --------------------------------------------- +2021-11-19 06:55:51 [DEBUG] Runner:[root] +2021-11-19 06:55:51 [DEBUG] ENV: +2021-11-19 06:55: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_GO=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_JSCPD=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=9a0e88ea0500 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.cIEq9ft9kr +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=true +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=true +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 06:55:51 [DEBUG] --------------------------------------------- +2021-11-19 06:55:51 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:51 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 06:55:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:51 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 06:55:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 06:55: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 06:55: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 06:55:51 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 06:55:51 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 06:55:51 [DEBUG] Loading rules for ARM... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for ARM... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:51 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 06:55:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:51 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 06:55:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 06:55: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 06:55:51 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 06:55:51 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 06:55:51 [DEBUG] Loading rules for BASH... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for BASH... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 06:55:51 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 06:55:51 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 06:55:51 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:51 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 06:55:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:51 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 06:55:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 06:55:51 [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 06:55:51 [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 06:55:51 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 06:55:51 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 06:55:51 [DEBUG] Loading rules for CLOJURE... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:51 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 06:55:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:51 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 06:55:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 06:55:51 [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 06:55:51 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 06:55:51 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 06:55:51 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:51 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 06:55:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:51 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 06:55:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 06:55:51 [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 06:55:51 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 06:55:51 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 06:55:51 [DEBUG] Loading rules for CPP... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for CPP... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 06:55:51 [DEBUG] Loading rules for CSHARP... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 06:55:51 [DEBUG] Loading rules for CSS... +2021-11-19 06:55:51 [DEBUG] Getting linter rules for CSS... +2021-11-19 06:55:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:51 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 06:55:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:51 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 06:55:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:51 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 06:55:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 06:55:52 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for DART... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for DART... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 06:55: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 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 06:55:52 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 06:55:52 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 06:55: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 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 06:55:52 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 06:55:52 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for ENV... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for ENV... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 06:55:52 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 06:55: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 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 06:55:52 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 06:55:52 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for GHERKIN... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 06:55:52 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for GO... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for GO... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 06:55:52 [INFO] ---------------------------------------------- +2021-11-19 06:55:52 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 06:55:52 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 06:55:52 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 06:55:52 [DEBUG] Loading rules for GROOVY... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 06:55: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 06:55:52 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 06:55:52 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for HTML... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for HTML... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 06:55:52 [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 06:55:52 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 06:55:52 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for JAVA... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for JAVA... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 06:55:52 [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 06:55:52 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 06:55:52 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 06:55:52 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 06:55:52 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 06:55:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:52 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 06:55:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:52 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 06:55:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 06:55:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 06:55:53 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 06:55:53 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for JSCPD... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 06:55:53 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for JSON... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for JSON... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 06:55:53 [DEBUG] Loading rules for JSONC... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for JSONC... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 06:55:53 [DEBUG] Loading rules for JSX... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for JSX... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 06:55:53 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 06:55:53 [DEBUG] Loading rules for KOTLIN... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 06:55:53 [DEBUG] Loading rules for LATEX... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for LATEX... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 06:55:53 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for LUA... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for LUA... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 06:55:53 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 06:55: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 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 06:55:53 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 06:55:53 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for OPENAPI... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 06:55:53 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for PERL... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for PERL... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 06:55:53 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 06:55:53 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 06:55: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 06:55:53 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 06:55:53 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 06:55:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:53 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 06:55:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:53 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 06:55:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 06:55:53 [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 06:55:53 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 06:55:53 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 06:55:53 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 06:55:53 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 06:55:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:53 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 06:55:54 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 06:55:54 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 06:55:54 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 06:55:54 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 06:55:54 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 06:55:54 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 06:55:54 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 06:55:54 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for R... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for R... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 06:55:54 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for RAKU... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for RAKU... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 06:55:54 [DEBUG] Loading rules for RUBY... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for RUBY... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 06:55: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 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 06:55:54 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for RUST_2015... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 06:55:54 [DEBUG] Loading rules for RUST_2018... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 06:55:54 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 06:55:54 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 06:55: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 06:55:54 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 06:55:54 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 06:55:54 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 06:55:54 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 06:55:54 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 06:55:54 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 06:55:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:54 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 06:55:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:54 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 06:55:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:54 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 06:55:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 06:55:55 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 06:55:55 [DEBUG] Loading rules for STATES... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for STATES... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 06:55:55 [DEBUG] Loading rules for SQL... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for SQL... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:55 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 06:55:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:55 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 06:55:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 06:55:55 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 06:55:55 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 06:55:55 [DEBUG] Loading rules for TEKTON... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 06:55:55 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:55 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 06:55:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:55 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 06:55:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 06:55:55 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 06:55:55 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:55 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 06:55:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:55 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 06:55:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 06:55:55 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 06:55:55 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 06:55:55 [DEBUG] Loading rules for TSX... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for TSX... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:55 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 06:55:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 06:55:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 06:55:55 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 06:55:55 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:55 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 06:55:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 06:55:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 06:55:55 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 06:55:55 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:55 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 06:55:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 06:55:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 06:55: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 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 06:55:55 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 06:55:55 [DEBUG] Loading rules for XML... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for XML... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 06:55:55 [DEBUG] Loading rules for YAML... +2021-11-19 06:55:55 [DEBUG] Getting linter rules for YAML... +2021-11-19 06:55:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 06:55:55 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 06:55:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 06:55:55 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 06:55:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 06:55:55 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 06:55:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 06:55: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 06:55: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 06:55:55 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 06:55:55 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 06:55:55 [DEBUG] ENV:[browser] +2021-11-19 06:55:55 [DEBUG] ENV:[es6] +2021-11-19 06:55:55 [DEBUG] ENV:[jest] +2021-11-19 06:55:56 [DEBUG] ENV:[browser] +2021-11-19 06:55:56 [DEBUG] ENV:[es6] +2021-11-19 06:55:56 [DEBUG] ENV:[jest] +2021-11-19 06:55:56 [DEBUG] --- Linter commands --- +2021-11-19 06:55:56 [DEBUG] ----------------------- +2021-11-19 06:55:56 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 06:55:56 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 06:55:56 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 06:55:56 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 06:55:56 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 06:55:56 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 06:55:56 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 06:55:56 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 06:55:56 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 06:55:56 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 06:55:56 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 06:55: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 06:55:56 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 06:55:56 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 06:55:56 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 06:55:56 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 06:55:56 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 06:55:56 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 06:55:56 [DEBUG] Linter key: R, command: lintr +2021-11-19 06:55:56 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 06:55:56 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 06:55:56 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 06:55:56 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 06:55:56 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 06:55:56 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 06:55:56 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 06:55:56 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 06:55:56 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 06:55:56 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 06:55:56 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 06:55:56 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 06:55:56 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 06:55:56 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 06:55:56 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 06:55:56 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 06:55:56 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 06:55:56 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 06:55:56 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 06:55:56 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 06:55:56 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 06:55: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 06:55:56 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 06:55:56 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 06:55:56 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 06:55:56 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 06:55:56 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 06:55:56 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 06:55:56 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 06:55:56 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 06:55:56 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 06:55:56 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 06:55: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 06:55:56 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 06:55:56 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 06:55:56 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 06:55:56 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 06:55:56 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 06:55:56 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 06:55:56 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 06:55:56 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 06:55:56 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 06:55:56 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 06:55:56 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 06:55:56 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 06:55:56 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 06:55:56 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 06:55:56 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 06:55:56 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 06:55:56 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 06:55:56 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 06:55:56 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 06:55:56 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 06:55:56 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 06:55:56 [DEBUG] --------------------------------------------- +2021-11-19 06:55:56 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 06:55:56 [DEBUG] Building file list... +2021-11-19 06:55:56 [DEBUG] Validate all code base: true... +2021-11-19 06:55:56 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 06:55:56 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 06:55:56 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 06:55:56 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 06:55:56 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 06:55:56 [DEBUG] ---------------------------------------------- +2021-11-19 06:55: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 06:55:57 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:55:57 [DEBUG] Loading the files list that Git ignores... +2021-11-19 06:55:57 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 06:55:57 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 06:55:57 [DEBUG] ----------------------- +2021-11-19 06:55:57 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 06:55:57 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 06:55:57 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 06:55:57 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 06:55:57 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 06:55:57 [DEBUG] --------------------------------------------- +2021-11-19 06:55:57 [INFO] --------------------------------- +2021-11-19 06:55:57 [INFO] ------ File list to check: ------ +2021-11-19 06:55:57 [INFO] --------------------------------- +2021-11-19 06:55:57 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 06:55:57 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 06:55:57 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 06:55:58 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 06:55:58 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 06:55:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 06:55:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 06:55:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 06:55:58 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 06:55:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 06:55:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 06:55:58 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 06:55:58 [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 06:55:58 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55:58 [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 06:55:58 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55:58 [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 06:55:58 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG]  +2021-11-19 06:55:58 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 06:55:58 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 06:55:58 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 06:55:58 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 06:55:59 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 06:55:59 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55:59 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 06:55:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55: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 06:55:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:55:59 [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 06:55:59 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 06:55:59 [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 06:55:59 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 06:55:59 [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 06:55:59 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 06:55:59 [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 06:55:59 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 06:55:59 [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 06:55:59 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 06:55:59 [DEBUG]  +2021-11-19 06:55:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 06:55:59 [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 06:56:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 06:56: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 06:56:00 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 06:56:00 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 06:56:00 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 06:56:00 [DEBUG]  +2021-11-19 06:56:00 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 06:56:01 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 06:56:01 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 06:56: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 06:56:01 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 06:56: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 06:56:01 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 06:56: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 06:56:01 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 06:56: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 06:56:01 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 06:56: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 06:56:01 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 06:56: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 06:56:01 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 06:56:01 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 06:56:01 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 06:56:01 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 06:56:01 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 06:56:01 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 06:56:01 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 06:56: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 06:56:01 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 06:56:01 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 06:56:01 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 06:56:01 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 06:56:01 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 06:56:01 [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 06:56:01 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 06:56:01 [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 06:56:01 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 06:56:01 [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 06:56:01 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 06:56:01 [DEBUG]  +2021-11-19 06:56:01 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 06:56: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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 06:56:02 [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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 06:56:02 [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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 06:56:02 [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 06:56:02 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 06:56:02 [DEBUG]  +2021-11-19 06:56:02 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 06:56: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 06:56:03 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 06:56:03 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 06:56:03 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 06:56:03 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 06:56:03 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 06:56:03 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 06:56:03 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 06:56:03 [DEBUG]  +2021-11-19 06:56:03 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 06:56:03 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 06:56:03 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 06:56: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 06:56:04 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 06:56: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 06:56:04 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 06:56: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 06:56:04 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 06:56:04 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 06:56:04 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 06:56:04 [DEBUG]  +2021-11-19 06:56:04 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 06:56:05 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 06:56:05 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 06:56:05 [DEBUG]  +2021-11-19 06:56:05 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 06:56:05 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 06:56:05 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 06:56:05 [DEBUG]  +2021-11-19 06:56:05 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 06:56:05 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 06:56:05 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 06:56:05 [DEBUG]  +2021-11-19 06:56:05 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 06:56:05 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 06:56:05 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 06:56:05 [DEBUG]  +2021-11-19 06:56:05 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 06:56: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 06:56:05 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 06:56:05 [DEBUG]  +2021-11-19 06:56:05 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 06:56: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 06:56:05 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 06:56:05 [DEBUG]  +2021-11-19 06:56:05 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 06:56: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 06:56:05 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 06:56:05 [DEBUG]  +2021-11-19 06:56:05 [INFO] ---------------------------------------------- +2021-11-19 06:56:05 [INFO] Successfully gathered list of files... +2021-11-19 06:56:05 [DEBUG] --- ENV (before running linters) --- +2021-11-19 06:56:05 [DEBUG] ------------------------------------ +2021-11-19 06:56:05 [DEBUG] ENV: +2021-11-19 06:56: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_GO=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_JSCPD=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=9a0e88ea0500 +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.cIEq9ft9kr +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=true +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=true +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 06:56:05 [DEBUG] ------------------------------------ +2021-11-19 06:56:05 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the ARM language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 06:56: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 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the BASH language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to shellcheck... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to shellcheck --color --external-sources... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_BASH file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking shellcheck linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[BASH] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the CPP language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 06:56:05 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 06:56:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:05 [DEBUG] Running linter for the CSHARP language... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 06:56:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 06:56:05 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 06:56:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 06:56:05 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 06:56:05 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 06:56:06 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 06:56:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:06 [DEBUG] Running linter for the CSS language... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 06:56:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 06:56:06 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 06:56:06 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 06:56:06 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 06:56:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:06 [DEBUG] Running linter for the DART language... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 06:56:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 06:56:06 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 06:56:06 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 06:56:06 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 06:56:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:06 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 06:56:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 06:56:06 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 06:56:06 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 06:56:06 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 06:56:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:06 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 06:56:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 06:56:06 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 06:56:06 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 06:56:06 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 06:56:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:06 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 06:56:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:06 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 06:56:06 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 06:56:06 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 06:56:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 06:56:06 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:56:06 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 06:56:06 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:56:06 [DEBUG] Workspace path: /tmp/lint +2021-11-19 06:56:06 [INFO]  +2021-11-19 06:56:06 [INFO] ---------------------------------------------- +2021-11-19 06:56:06 [INFO] ---------------------------------------------- +2021-11-19 06:56: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/.gitignore /tmp/lint/.golangci.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/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 06:56:06 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 06:56:06 [INFO] ---------------------------------------------- +2021-11-19 06:56:06 [INFO] ---------------------------------------------- +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 06:56: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 06:56:06 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 06:56:06 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 06:56: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 06:56:06 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 06:56:06 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 06:56: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 06:56:06 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 06:56:06 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 06:56:06 [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 06:56:06 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 06:56:06 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 06:56:06 [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 06:56:06 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 06:56:06 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 06:56:06 [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 06:56:06 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/README.md] +2021-11-19 06:56:06 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 06:56:06 [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 06:56:06 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 06:56:06 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 06:56:06 [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 06:56:06 [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 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 06:56:06 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 06:56:06 [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 06:56:06 [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 06:56:06 [INFO] --------------------------- +2021-11-19 06:56:06 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 06:56:06 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:06 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 06:56: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 06:56: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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 06:56:07 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 06:56: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 06:56: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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 06:56: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 06:56: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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 06:56: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 06:56: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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 06:56:07 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 06:56: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 06:56: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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 06:56:07 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 06:56: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 06:56:07 [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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 06:56: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 06:56:07 [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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 06:56: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 06:56:07 [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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 06:56: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 06:56:07 [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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 06:56: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 06:56:07 [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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 06:56: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 06:56:07 [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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 06:56:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 06:56: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 06:56:07 [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 06:56:07 [INFO] --------------------------- +2021-11-19 06:56:07 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 06:56: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 06:56: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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 06:56: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 06:56: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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 06:56: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 06:56: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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 06:56: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 06:56: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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 06:56: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 06:56: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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 06:56: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 06:56: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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 06:56: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 06:56: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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 06:56:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 06:56:08 [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 06:56:08 [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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 06:56:08 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 06:56:08 [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 06:56:08 [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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 06:56:08 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 06:56:08 [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 06:56:08 [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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 06:56:08 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 06:56:08 [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 06:56:08 [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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 06:56:08 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 06:56:08 [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 06:56:08 [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 06:56:08 [INFO] --------------------------- +2021-11-19 06:56:08 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 06:56:08 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 06:56:08 [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 06:56:08 [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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 06:56:09 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 06:56: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 06:56: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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 06:56:09 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 06:56: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 06:56: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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 06:56:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 06:56: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 06:56: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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 06:56:09 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 06:56: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 06:56: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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 06:56:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 06:56: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 06:56: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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 06:56:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 06:56: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 06:56: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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 06:56:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 06:56: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 06:56:09 [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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 06:56:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 06:56:09 [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 06:56:09 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 06:56:09 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 06:56:09 [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 06:56:09 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 06:56:09 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 06:56:09 [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 06:56:09 [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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 06:56:09 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 06:56:09 [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 06:56:09 [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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 06:56:09 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 06:56:09 [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 06:56:09 [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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 06:56:09 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 06:56:09 [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 06:56:09 [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 06:56:09 [INFO] --------------------------- +2021-11-19 06:56:09 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 06:56:09 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:09 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 06:56: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 06:56: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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 06:56:10 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 06:56: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 06:56: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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 06:56:10 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 06:56: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 06:56: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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 06:56:10 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 06:56: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 06:56: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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 06:56:10 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 06:56: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 06:56: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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 06:56:10 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 06:56: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 06:56: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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 06:56:10 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 06:56:10 [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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 06:56:10 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 06:56: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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 06:56:10 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 06:56:10 [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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 06:56:10 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 06:56:10 [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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 06:56:10 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 06:56:10 [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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 06:56:10 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 06:56:10 [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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 06:56:10 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 06:56: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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 06:56:10 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 06:56:10 [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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 06:56:10 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:10 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 06:56:10 [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 06:56:10 [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 06:56:10 [INFO] --------------------------- +2021-11-19 06:56:10 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 06:56:11 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 06:56: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 06:56: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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 06:56:11 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 06:56: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 06:56: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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 06:56:11 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 06:56: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 06:56: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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 06:56:11 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 06:56: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 06:56: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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 06:56:11 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 06:56: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 06:56: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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 06:56:11 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 06:56:11 [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 06:56:11 [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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 06:56:11 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 06:56:11 [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 06:56:11 [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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 06:56:11 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 06:56:11 [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 06:56:11 [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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 06:56:11 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 06:56:11 [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 06:56:11 [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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 06:56:11 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 06:56: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 06:56:11 [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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 06:56:11 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 06:56:11 [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 06:56:11 [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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 06:56:11 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 06:56:11 [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 06:56:11 [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 06:56:11 [INFO] --------------------------- +2021-11-19 06:56:11 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 06:56:11 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 06:56: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 06:56: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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 06:56:12 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 06:56: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 06:56: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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 06:56:12 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 06:56: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 06:56: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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 06:56:12 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 06:56: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 06:56: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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 06:56:12 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 06:56: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 06:56: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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 06:56:12 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 06:56: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 06:56: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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 06:56:12 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 06:56:12 [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 06:56:12 [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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 06:56:12 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 06:56:12 [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 06:56:12 [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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 06:56:12 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 06:56:12 [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 06:56:12 [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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 06:56:12 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 06:56:12 [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 06:56:12 [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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 06:56:12 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 06:56:12 [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 06:56:12 [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 06:56:12 [INFO] --------------------------- +2021-11-19 06:56:12 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 06:56:13 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 06:56:13 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 06:56:13 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 06:56:13 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 06:56:13 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 06:56:13 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 06:56:13 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 06:56:13 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 06:56: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 06:56: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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/option.go] +2021-11-19 06:56:13 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 06:56:13 [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 06:56:13 [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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 06:56:13 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 06:56:13 [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 06:56:13 [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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 06:56:13 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 06:56:13 [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 06:56:13 [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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 06:56:13 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 06:56:13 [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 06:56:13 [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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 06:56:13 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 06:56:13 [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 06:56:13 [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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:13 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 06:56:13 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:13 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 06:56:13 [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 06:56:13 [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 06:56:13 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 06:56:14 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 06:56: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 06:56: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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/server.go] +2021-11-19 06:56:14 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 06:56: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 06:56: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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 06:56:14 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 06:56: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 06:56: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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/service.go] +2021-11-19 06:56:14 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 06:56: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 06:56: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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 06:56:14 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 06:56: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 06:56: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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 06:56:14 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 06:56: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 06:56: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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 06:56:14 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 06:56: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 06:56: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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 06:56:14 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 06:56: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 06:56:14 [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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 06:56:14 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 06:56:14 [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 06:56:14 [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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 06:56:14 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 06:56:14 [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 06:56:14 [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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 06:56:14 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 06:56: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 06:56:14 [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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 06:56:14 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 06:56:14 [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 06:56:14 [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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 06:56:14 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 06:56:14 [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 06:56:14 [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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 06:56:14 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:14 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 06:56: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 06:56:14 [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 06:56:14 [INFO] --------------------------- +2021-11-19 06:56:14 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 06:56:15 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 06:56: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 06:56: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 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 06:56:15 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 06:56: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 06:56: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 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 06:56:15 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 06:56: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 06:56: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 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 06:56:15 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 06:56: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 06:56: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 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 06:56:15 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 06:56: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 06:56: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 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 06:56:15 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 06:56: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 06:56: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 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 06:56:15 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Running linter for the ENV language... +2021-11-19 06:56:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 06:56:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:15 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 06:56:15 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 06:56:15 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 06:56:15 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 06:56:15 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 06:56:15 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 06:56:15 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:15 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 06:56:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 06:56:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:15 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 06:56:15 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 06:56:15 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 06:56:15 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 06:56:15 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 06:56:15 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 06:56:15 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:15 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 06:56:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 06:56:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:15 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 06:56:15 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 06:56:15 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 06:56:15 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:56:15 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 06:56:15 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:56:15 [DEBUG] Workspace path: /tmp/lint +2021-11-19 06:56:15 [INFO]  +2021-11-19 06:56:15 [INFO] ---------------------------------------------- +2021-11-19 06:56:15 [INFO] ---------------------------------------------- +2021-11-19 06:56:15 [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/.gitignore /tmp/lint/.golangci.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/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 06:56:15 [INFO] Linting [GITLEAKS] files... +2021-11-19 06:56:15 [INFO] ---------------------------------------------- +2021-11-19 06:56:15 [INFO] ---------------------------------------------- +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 06:56:15 [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 06:56:15 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 06:56:15 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 06:56:15 [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 06:56:15 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 06:56:15 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 06:56:15 [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 06:56:15 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 06:56:15 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 06:56:15 [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 06:56:15 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:15 [INFO] --------------------------- +2021-11-19 06:56:15 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 06:56:15 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 06:56:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:15 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 06:56:16 [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 06:56:16 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 06:56:16 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 06:56:16 [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 06:56:16 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/README.md] +2021-11-19 06:56:16 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 06:56:16 [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 06:56:16 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 06:56:16 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 06:56:16 [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 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 06:56:16 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 06:56:16 [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 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 06:56:16 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 06:56: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 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 06:56:16 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 06:56:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 06:56:16 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 06:56:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 06:56:16 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 06:56:16 [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 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 06:56:16 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 06:56:16 [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 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 06:56:16 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 06:56:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 06:56:16 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 06:56:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 06:56:16 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:16 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 06:56:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:16 [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 06:56:16 [INFO] --------------------------- +2021-11-19 06:56:16 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 06:56: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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:17 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 06:56:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:17 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 06:56:17 [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 06:56:17 [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 06:56:17 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 06:56:18 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 06:56:18 [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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 06:56:18 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 06:56:18 [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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 06:56:18 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 06:56:18 [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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 06:56:18 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 06:56:18 [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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 06:56:18 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 06:56:18 [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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 06:56:18 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 06:56:18 [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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 06:56:18 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 06:56: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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 06:56:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 06:56:18 [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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 06:56:18 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 06:56: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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 06:56:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 06:56: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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 06:56:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 06:56: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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 06:56:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 06:56: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 06:56:18 [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 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 06:56:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 06:56: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 06:56:18 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:18 [INFO] --------------------------- +2021-11-19 06:56:18 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 06:56:18 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 06:56:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:18 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 06:56:19 [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 06:56:19 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 06:56:19 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 06:56:19 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 06:56:19 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 06:56:19 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 06:56:19 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 06:56:19 [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 06:56:19 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 06:56:19 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 06:56:19 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 06:56:19 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 06:56:19 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 06:56:19 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 06:56:19 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 06:56:19 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 06:56:19 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 06:56:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:19 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 06:56:19 [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 06:56:19 [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 06:56:19 [INFO] --------------------------- +2021-11-19 06:56:19 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 06:56:20 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 06:56: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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 06:56:20 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 06:56:20 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 06:56:20 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 06:56:20 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 06:56:20 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 06:56:20 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 06:56:20 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 06:56:20 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 06:56:20 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 06:56:20 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 06:56:20 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 06:56:20 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 06:56:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:20 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 06:56:20 [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 06:56:20 [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 06:56:20 [INFO] --------------------------- +2021-11-19 06:56:20 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 06:56:21 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 06:56:21 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 06:56:21 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 06:56:21 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 06:56:21 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 06:56:21 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 06:56:21 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 06:56:21 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 06:56:21 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 06:56:21 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 06:56:21 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 06:56:21 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 06:56:21 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 06:56:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 06:56:21 [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 06:56:21 [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 06:56:21 [INFO] --------------------------- +2021-11-19 06:56:21 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 06:56:22 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 06:56:22 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 06:56:22 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 06:56:22 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 06:56:22 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 06:56:22 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 06:56:22 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 06:56:22 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 06:56:22 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 06:56:22 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 06:56:22 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 06:56:22 [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 06:56:22 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/option.go] +2021-11-19 06:56:22 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 06:56:22 [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 06:56:22 [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 06:56:22 [INFO] --------------------------- +2021-11-19 06:56:22 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 06:56:22 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 06:56:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:22 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 06:56:23 [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 06:56:23 [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 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 06:56:23 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 06:56:23 [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 06:56:23 [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 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 06:56:23 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 06:56:23 [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 06:56:23 [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 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 06:56:23 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 06:56:23 [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 06:56:23 [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 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 06:56:23 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 06:56:23 [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 06:56:23 [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 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 06:56:23 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 06:56:23 [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 06:56:23 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/server.go] +2021-11-19 06:56:23 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 06:56:23 [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 06:56:23 [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 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 06:56:23 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 06:56:23 [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 06:56:23 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/service.go] +2021-11-19 06:56:23 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 06:56:23 [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 06:56:23 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 06:56:23 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 06:56:23 [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 06:56:23 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 06:56:23 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 06:56:23 [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 06:56:23 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 06:56:23 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 06:56:23 [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 06:56:23 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 06:56:23 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 06:56:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:23 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 06:56:23 [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 06:56:23 [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 06:56:23 [INFO] --------------------------- +2021-11-19 06:56:23 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 06:56:24 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 06:56:24 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 06:56:24 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 06:56: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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 06:56:24 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 06:56:24 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 06:56:24 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 06:56: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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 06:56:24 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 06:56: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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 06:56:24 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 06:56:24 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 06:56:24 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 06:56:24 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 06:56:24 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 06:56:24 [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 06:56:24 [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 06:56:24 [INFO] --------------------------- +2021-11-19 06:56:24 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 06:56:24 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 06:56:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 06:56:24 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 06:56:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 06:56:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:24 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 06:56:24 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 06:56:24 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 06:56:24 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 06:56:24 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 06:56:24 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 06:56:24 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:56:24 [DEBUG] Running linter for the GO language... +2021-11-19 06:56:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 06:56:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:56:24 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 06:56:25 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 06:56:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 06:56:25 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 06:56:25 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 06:56:25 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 06:56:25 [DEBUG] Workspace path: /tmp/lint +2021-11-19 06:56:25 [INFO]  +2021-11-19 06:56:25 [INFO] ---------------------------------------------- +2021-11-19 06:56:25 [INFO] ---------------------------------------------- +2021-11-19 06:56:25 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 06:56:25 [INFO] Linting [GO] files... +2021-11-19 06:56:25 [INFO] ---------------------------------------------- +2021-11-19 06:56:25 [INFO] ---------------------------------------------- +2021-11-19 06:56:25 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 06:56:25 [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 06:56:25 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:25 [INFO] --------------------------- +2021-11-19 06:56:25 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 06:56:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:26 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 06:56:26 [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 06:56:26 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:26 [INFO] --------------------------- +2021-11-19 06:56:26 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 06:56:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:27 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 06:56:27 [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 06:56:27 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:27 [INFO] --------------------------- +2021-11-19 06:56:27 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 06:56:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:28 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 06:56:28 [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 06:56:28 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:28 [INFO] --------------------------- +2021-11-19 06:56:28 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 06:56:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:28 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 06:56:28 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:28 [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 06:56:28 [INFO] --------------------------- +2021-11-19 06:56:28 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 06:56:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:29 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 06:56:29 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:29 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:29 [INFO] --------------------------- +2021-11-19 06:56:29 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 06:56:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:30 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:30 [INFO] --------------------------- +2021-11-19 06:56:30 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 06:56:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:31 [INFO] --------------------------- +2021-11-19 06:56:31 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 06:56:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:32 [INFO] --------------------------- +2021-11-19 06:56:32 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 06:56:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 06:56: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 06:56:33 [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: go +2021-11-19 06:56:33 [INFO] --------------------------- +2021-11-19 06:56:33 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 06:56:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:34 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 06:56: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 06:56:34 [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: go +2021-11-19 06:56:34 [INFO] --------------------------- +2021-11-19 06:56:34 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 06:56:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:35 [INFO] --------------------------- +2021-11-19 06:56:35 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 06:56:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:35 [INFO] --------------------------- +2021-11-19 06:56:35 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 06:56:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:36 [INFO] --------------------------- +2021-11-19 06:56:36 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 06:56:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:37 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 06:56: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 06:56:37 [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: go +2021-11-19 06:56:37 [INFO] --------------------------- +2021-11-19 06:56:37 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 06:56:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:38 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 06:56:38 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:38 [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: go +2021-11-19 06:56:38 [INFO] --------------------------- +2021-11-19 06:56:38 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 06:56:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:39 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 06:56:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:39 [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: go +2021-11-19 06:56:39 [INFO] --------------------------- +2021-11-19 06:56:39 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 06:56:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:39 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 06:56:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:39 [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: go +2021-11-19 06:56:39 [INFO] --------------------------- +2021-11-19 06:56:39 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 06:56:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 06:56: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 06:56:40 [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: go +2021-11-19 06:56:40 [INFO] --------------------------- +2021-11-19 06:56:40 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 06:56:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:41 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:41 [INFO] --------------------------- +2021-11-19 06:56:41 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 06:56:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:42 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 06:56: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 06:56:42 [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: go +2021-11-19 06:56:42 [INFO] --------------------------- +2021-11-19 06:56:42 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 06:56:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:43 [INFO] --------------------------- +2021-11-19 06:56:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 06:56:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:43 [INFO] --------------------------- +2021-11-19 06:56:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 06:56:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:44 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 06:56: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 06:56:44 [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: go +2021-11-19 06:56:44 [INFO] --------------------------- +2021-11-19 06:56:44 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 06:56:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:45 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 06:56:45 [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 06:56:45 [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: go +2021-11-19 06:56:45 [INFO] --------------------------- +2021-11-19 06:56:45 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 06:56:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:46 [INFO] --------------------------- +2021-11-19 06:56:46 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 06:56:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 06:56:46 [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 06:56:46 [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: go +2021-11-19 06:56:46 [INFO] --------------------------- +2021-11-19 06:56:47 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 06:56:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:47 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 06:56: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 06:56: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: go +2021-11-19 06:56:47 [INFO] --------------------------- +2021-11-19 06:56:47 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 06:56:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:48 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 06:56:48 [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 06:56:48 [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: go +2021-11-19 06:56:48 [INFO] --------------------------- +2021-11-19 06:56:48 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 06:56:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:49 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 06:56:49 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:49 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:49 [INFO] --------------------------- +2021-11-19 06:56:49 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 06:56:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:50 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 06:56:50 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:56:50 [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: go +2021-11-19 06:56:50 [INFO] --------------------------- +2021-11-19 06:56:50 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 06:56:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:51 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 06:56: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 06:56:51 [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: go +2021-11-19 06:56:51 [INFO] --------------------------- +2021-11-19 06:56:51 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 06:56:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:52 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 06:56: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 06:56:52 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:52 [INFO] --------------------------- +2021-11-19 06:56:52 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 06:56:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:52 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 06:56:52 [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 06:56:52 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:52 [INFO] --------------------------- +2021-11-19 06:56:52 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 06:56:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:53 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 06:56:53 [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 06:56:53 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:53 [INFO] --------------------------- +2021-11-19 06:56:53 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 06:56:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:54 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 06:56: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 06:56:54 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:54 [INFO] --------------------------- +2021-11-19 06:56:54 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 06:56:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:55 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 06:56: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 06:56:55 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:55 [INFO] --------------------------- +2021-11-19 06:56:55 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 06:56:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:56 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 06:56:56 [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 06:56:56 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:56 [INFO] --------------------------- +2021-11-19 06:56:56 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 06:56:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:57 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 06:56:57 [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 06:56:57 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:57 [INFO] --------------------------- +2021-11-19 06:56:57 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 06:56:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:58 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 06:56:58 [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 06:56:58 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:58 [INFO] --------------------------- +2021-11-19 06:56:58 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 06:56:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:58 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 06:56: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 06:56:58 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:58 [INFO] --------------------------- +2021-11-19 06:56:58 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 06:56:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:56:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:56:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:56:59 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 06:56:59 [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 06:56:59 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:56:59 [INFO] --------------------------- +2021-11-19 06:56:59 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 06:57:00 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:00 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:00 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:00 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 06:57:00 [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 06:57:00 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:00 [INFO] --------------------------- +2021-11-19 06:57:00 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 06:57:01 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:01 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:01 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:01 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:01 [INFO] --------------------------- +2021-11-19 06:57:01 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 06:57:02 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:02 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:02 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:02 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 06:57:02 [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 06:57:02 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:02 [INFO] --------------------------- +2021-11-19 06:57:02 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 06:57:02 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:02 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:02 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:02 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 06:57:02 [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 06:57:02 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:02 [INFO] --------------------------- +2021-11-19 06:57:02 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 06:57:03 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:03 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:03 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:03 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:03 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 06:57:03 [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 06:57:03 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:03 [INFO] --------------------------- +2021-11-19 06:57:03 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 06:57:04 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:04 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:04 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:04 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:04 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 06:57:04 [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 06:57:04 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:04 [INFO] --------------------------- +2021-11-19 06:57:04 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 06:57:05 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:05 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:05 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:05 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 06:57:05 [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 06:57:05 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:05 [INFO] --------------------------- +2021-11-19 06:57:05 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 06:57:06 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:06 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:06 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:06 [INFO] --------------------------- +2021-11-19 06:57:06 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 06:57:06 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:06 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:06 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:06 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:06 [INFO] --------------------------- +2021-11-19 06:57:06 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 06:57:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:07 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:07 [INFO] --------------------------- +2021-11-19 06:57:07 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 06:57:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:08 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 06:57:08 [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 06:57:08 [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: go +2021-11-19 06:57:08 [INFO] --------------------------- +2021-11-19 06:57:08 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 06:57:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:09 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 06:57:09 [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 06:57:09 [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: go +2021-11-19 06:57:09 [INFO] --------------------------- +2021-11-19 06:57:09 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 06:57:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:10 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 06:57:10 [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 06:57:10 [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: go +2021-11-19 06:57:10 [INFO] --------------------------- +2021-11-19 06:57:10 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 06:57:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:10 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 06:57:10 [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 06:57:10 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:10 [INFO] --------------------------- +2021-11-19 06:57:11 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 06:57:11 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:11 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:11 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:11 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:11 [INFO] --------------------------- +2021-11-19 06:57:11 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 06:57:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:12 [INFO] --------------------------- +2021-11-19 06:57:12 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 06:57:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 06:57:13 [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 06:57:13 [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: go +2021-11-19 06:57:13 [INFO] --------------------------- +2021-11-19 06:57:13 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 06:57:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 06:57:14 [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 06:57:14 [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: go +2021-11-19 06:57:14 [INFO] --------------------------- +2021-11-19 06:57:14 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 06:57:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 06:57:14 [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 06:57:14 [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: go +2021-11-19 06:57:14 [INFO] --------------------------- +2021-11-19 06:57:14 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 06:57:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:15 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 06:57:15 [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 06:57:15 [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: go +2021-11-19 06:57:15 [INFO] --------------------------- +2021-11-19 06:57:15 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 06:57:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:16 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 06:57:16 [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 06:57:16 [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: go +2021-11-19 06:57:16 [INFO] --------------------------- +2021-11-19 06:57:16 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 06:57:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:17 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 06:57:17 [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 06:57:17 [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: go +2021-11-19 06:57:17 [INFO] --------------------------- +2021-11-19 06:57:17 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 06:57:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:18 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 06:57:18 [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 06:57:18 [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: go +2021-11-19 06:57:18 [INFO] --------------------------- +2021-11-19 06:57:18 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 06:57:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:19 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 06:57:19 [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 06:57:19 [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: go +2021-11-19 06:57:19 [INFO] --------------------------- +2021-11-19 06:57:19 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 06:57:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:19 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 06:57:19 [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 06:57:19 [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: go +2021-11-19 06:57:19 [INFO] --------------------------- +2021-11-19 06:57:19 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 06:57:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:20 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 06:57:20 [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 06:57:20 [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: go +2021-11-19 06:57:20 [INFO] --------------------------- +2021-11-19 06:57:20 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 06:57:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 06:57:21 [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 06:57:21 [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: go +2021-11-19 06:57:21 [INFO] --------------------------- +2021-11-19 06:57:21 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 06:57:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 06:57:22 [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 06:57:22 [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: go +2021-11-19 06:57:22 [INFO] --------------------------- +2021-11-19 06:57:22 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 06:57:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:23 [INFO] --------------------------- +2021-11-19 06:57:23 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 06:57:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:23 [INFO] --------------------------- +2021-11-19 06:57:23 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 06:57:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:24 [INFO] --------------------------- +2021-11-19 06:57:24 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 06:57:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:25 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 06:57:25 [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 06:57:25 [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: go +2021-11-19 06:57:25 [INFO] --------------------------- +2021-11-19 06:57:25 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 06:57:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:26 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 06:57:26 [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 06:57:26 [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: go +2021-11-19 06:57:26 [INFO] --------------------------- +2021-11-19 06:57:26 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 06:57:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:27 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 06:57:27 [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 06:57:27 [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: go +2021-11-19 06:57:27 [INFO] --------------------------- +2021-11-19 06:57:27 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 06:57:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:27 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 06:57:27 [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 06:57:27 [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: go +2021-11-19 06:57:27 [INFO] --------------------------- +2021-11-19 06:57:27 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 06:57:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:28 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 06:57:28 [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 06:57:28 [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: go +2021-11-19 06:57:28 [INFO] --------------------------- +2021-11-19 06:57:28 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 06:57:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:29 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 06:57:29 [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 06:57:29 [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: go +2021-11-19 06:57:29 [INFO] --------------------------- +2021-11-19 06:57:29 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 06:57:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:30 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 06:57:30 [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 06:57:30 [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: go +2021-11-19 06:57:30 [INFO] --------------------------- +2021-11-19 06:57:30 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 06:57:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:31 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 06:57:31 [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 06:57:31 [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: go +2021-11-19 06:57:31 [INFO] --------------------------- +2021-11-19 06:57:31 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 06:57:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:32 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 06:57:32 [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 06:57:32 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:32 [INFO] --------------------------- +2021-11-19 06:57:32 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 06:57:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:33 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 06:57:33 [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 06:57:33 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:33 [INFO] --------------------------- +2021-11-19 06:57:33 [INFO] File:[/tmp/lint/option.go] +2021-11-19 06:57:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:34 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 06:57:34 [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 06:57:34 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:34 [INFO] --------------------------- +2021-11-19 06:57:34 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 06:57:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:34 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 06:57:34 [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 06:57:34 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:34 [INFO] --------------------------- +2021-11-19 06:57:34 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 06:57:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:35 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 06:57:35 [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 06:57:35 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:35 [INFO] --------------------------- +2021-11-19 06:57:35 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 06:57:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:36 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 06:57:36 [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 06:57:36 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:36 [INFO] --------------------------- +2021-11-19 06:57:36 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 06:57:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:37 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:37 [INFO] --------------------------- +2021-11-19 06:57:37 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 06:57:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:38 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:38 [INFO] --------------------------- +2021-11-19 06:57:38 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 06:57:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:38 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 06:57: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 06:57:38 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:38 [INFO] --------------------------- +2021-11-19 06:57:38 [INFO] File:[/tmp/lint/server.go] +2021-11-19 06:57:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:39 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 06:57: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 06:57:39 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:39 [INFO] --------------------------- +2021-11-19 06:57:39 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 06:57:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:40 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 06:57: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 06:57:40 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:40 [INFO] --------------------------- +2021-11-19 06:57:40 [INFO] File:[/tmp/lint/service.go] +2021-11-19 06:57:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:41 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 06:57:41 [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 06:57:41 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:41 [INFO] --------------------------- +2021-11-19 06:57:41 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 06:57:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:42 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 06:57: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 06:57:42 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:42 [INFO] --------------------------- +2021-11-19 06:57:42 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 06:57:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:43 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 06:57:43 [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 06:57:43 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:43 [INFO] --------------------------- +2021-11-19 06:57:43 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 06:57:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:44 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 06:57:44 [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 06:57:44 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:44 [INFO] --------------------------- +2021-11-19 06:57:44 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 06:57:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:44 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 06:57:44 [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 06:57:44 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:44 [INFO] --------------------------- +2021-11-19 06:57:44 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 06:57:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:45 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 06:57:45 [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 06:57:45 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:45 [INFO] --------------------------- +2021-11-19 06:57:45 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 06:57:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:46 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 06:57:46 [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 06:57:46 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:46 [INFO] --------------------------- +2021-11-19 06:57:46 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 06:57:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:47 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 06:57:47 [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 06:57:47 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:47 [INFO] --------------------------- +2021-11-19 06:57:47 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 06:57:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:47 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 06:57:47 [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 06:57:47 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:47 [INFO] --------------------------- +2021-11-19 06:57:47 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 06:57:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:48 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 06:57: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 06:57:48 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:48 [INFO] --------------------------- +2021-11-19 06:57:48 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 06:57:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:49 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 06:57:49 [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 06:57:49 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:49 [INFO] --------------------------- +2021-11-19 06:57:49 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 06:57:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:50 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 06:57:50 [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 06:57:50 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:50 [INFO] --------------------------- +2021-11-19 06:57:50 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 06:57:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:51 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 06:57:51 [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 06:57:51 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:51 [INFO] --------------------------- +2021-11-19 06:57:51 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 06:57:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:51 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 06:57:51 [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 06:57:51 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 06:57:51 [INFO] --------------------------- +2021-11-19 06:57:51 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 06:57:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:52 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 06:57:52 [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 06:57:52 [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: go +2021-11-19 06:57:52 [INFO] --------------------------- +2021-11-19 06:57:52 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 06:57:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:53 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 06:57:53 [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 06:57:53 [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: go +2021-11-19 06:57:53 [INFO] --------------------------- +2021-11-19 06:57:53 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 06:57:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:54 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 06:57: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 06:57: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: go +2021-11-19 06:57:54 [INFO] --------------------------- +2021-11-19 06:57:54 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 06:57:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 06:57:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 06:57:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 06:57:54 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:57:54 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 06:57:54 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 06:57:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 06:57:54 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 06:57:54 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 06:57:54 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 06:57:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:57:54 [DEBUG] Running linter for the GROOVY language... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:57:54 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 06:57:54 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 06:57:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 06:57:54 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 06:57:54 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 06:57:54 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 06:57:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:57:54 [DEBUG] Running linter for the HTML language... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:57:54 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 06:57:54 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 06:57:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 06:57:54 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 06:57:54 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 06:57:54 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 06:57:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:57:54 [DEBUG] Running linter for the JAVA language... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 06:57:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:57:54 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 06:57:55 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 06:57:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 06:57:55 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 06:57:55 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 06:57:55 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 06:57:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:57:55 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 06:57:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 06:57:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:57:55 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 06:57:55 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 06:57:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 06:57:55 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 06:57:55 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 06:57:55 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 06:57:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:57:55 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 06:57:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 06:57:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:57:55 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 06:57:55 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 06:57:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 06:57:55 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 06:57:55 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 06:57:55 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 06:57:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 06:57:55 [DEBUG] Running linter for the JSCPD language... +2021-11-19 06:57:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 06:57:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 06:57:55 [DEBUG] Setting LINTER_NAME to jscpd... +2021-11-19 06:57:55 [DEBUG] Setting LINTER_COMMAND to jscpd --config /action/lib/.automation/.jscpd.json... +2021-11-19 06:57:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSCPD... +2021-11-19 06:57:55 [DEBUG] FILE_ARRAY_JSCPD file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:57:55 [DEBUG] Invoking jscpd linter. TEST_CASE_RUN: false +2021-11-19 06:57:55 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:57:55 [DEBUG] Workspace path: /tmp/lint +2021-11-19 06:57:55 [INFO]  +2021-11-19 06:57:55 [INFO] ---------------------------------------------- +2021-11-19 06:57:55 [INFO] ---------------------------------------------- +2021-11-19 06:57:55 [DEBUG] Running LintCodebase. FILE_TYPE: JSCPD. Linter name: jscpd, linter command: jscpd --config /action/lib/.automation/.jscpd.json, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 06:57:55 [INFO] Linting [JSCPD] files... +2021-11-19 06:57:55 [INFO] ---------------------------------------------- +2021-11-19 06:57:55 [INFO] ---------------------------------------------- +2021-11-19 06:57:55 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 06:57:55 [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 06:57:55 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:57:55 [INFO] --------------------------- +2021-11-19 06:57:55 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 06:57:56 [INFO] - File:[.editorconfig] was linted with [jscpd] successfully +2021-11-19 06:57:56 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.783ms +------ +2021-11-19 06:57:56 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 06:57:56 [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 06:57:56 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:57:56 [INFO] --------------------------- +2021-11-19 06:57:56 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 06:57:57 [INFO] - File:[.gitignore] was linted with [jscpd] successfully +2021-11-19 06:57:57 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.763ms +------ +2021-11-19 06:57:57 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 06:57: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 06:57:57 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:57:58 [INFO] --------------------------- +2021-11-19 06:57:58 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 06:57:59 [INFO] - File:[.golangci.yml] was linted with [jscpd] successfully +2021-11-19 06:57:59 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 33.307ms +------ +2021-11-19 06:57:59 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 06:57:59 [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 06:57:59 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:57:59 [INFO] --------------------------- +2021-11-19 06:57:59 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 06:58:00 [INFO] - File:[LICENSE] was linted with [jscpd] successfully +2021-11-19 06:58:00 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.754ms +------ +2021-11-19 06:58:00 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 06:58:00 [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 06:58:00 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:00 [INFO] --------------------------- +2021-11-19 06:58:00 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 06:58:01 [INFO] - File:[Makefile] was linted with [jscpd] successfully +2021-11-19 06:58:01 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.797ms +------ +2021-11-19 06:58:01 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 06:58: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 06:58:01 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:01 [INFO] --------------------------- +2021-11-19 06:58:01 [INFO] File:[/tmp/lint/README.md] +2021-11-19 06:58:02 [INFO] - File:[README.md] was linted with [jscpd] successfully +2021-11-19 06:58:02 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 41.707ms +------ +2021-11-19 06:58:02 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 06:58: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 06:58:02 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:02 [INFO] --------------------------- +2021-11-19 06:58:02 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 06:58:03 [INFO] - File:[closer.go] was linted with [jscpd] successfully +2021-11-19 06:58:03 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.71ms +------ +2021-11-19 06:58:03 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 06:58:03 [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 06:58:03 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:03 [INFO] --------------------------- +2021-11-19 06:58:03 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 06:58:04 [INFO] - File:[config.go] was linted with [jscpd] successfully +2021-11-19 06:58:04 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 220.682ms +------ +2021-11-19 06:58:04 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 06:58:05 [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 06:58:05 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:05 [INFO] --------------------------- +2021-11-19 06:58:05 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 06:58:06 [INFO] - File:[env.go] was linted with [jscpd] successfully +2021-11-19 06:58:06 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 56.124ms +------ +2021-11-19 06:58:06 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 06:58: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 06:58:06 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:06 [INFO] --------------------------- +2021-11-19 06:58:06 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 06:58:07 [INFO] - File:[errors.go] was linted with [jscpd] successfully +2021-11-19 06:58:07 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.641ms +------ +2021-11-19 06:58:07 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 06:58: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 06:58: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: jscpd +2021-11-19 06:58:07 [INFO] --------------------------- +2021-11-19 06:58:07 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 06:58:08 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:08 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 51.505ms +------ +2021-11-19 06:58:08 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 06:58: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 06:58: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: jscpd +2021-11-19 06:58:08 [INFO] --------------------------- +2021-11-19 06:58:08 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 06:58:09 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:09 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.118ms +------ +2021-11-19 06:58:09 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 06:58:09 [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 06:58:09 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:09 [INFO] --------------------------- +2021-11-19 06:58:09 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 06:58:10 [INFO] - File:[go.mod] was linted with [jscpd] successfully +2021-11-19 06:58:10 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.806ms +------ +2021-11-19 06:58:10 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 06:58: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 06:58:10 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:10 [INFO] --------------------------- +2021-11-19 06:58:10 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 06:58:11 [INFO] - File:[go.sum] was linted with [jscpd] successfully +2021-11-19 06:58:11 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.705ms +------ +2021-11-19 06:58:11 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 06:58:11 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:11 [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: jscpd +2021-11-19 06:58:11 [INFO] --------------------------- +2021-11-19 06:58:11 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 06:58:13 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:13 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 41.269ms +------ +2021-11-19 06:58:13 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 06:58:13 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:13 [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: jscpd +2021-11-19 06:58:13 [INFO] --------------------------- +2021-11-19 06:58:13 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 06:58:14 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:14 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.414ms +------ +2021-11-19 06:58:14 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 06:58:14 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:14 [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: jscpd +2021-11-19 06:58:14 [INFO] --------------------------- +2021-11-19 06:58:14 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 06:58:15 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:15 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 58.242ms +------ +2021-11-19 06:58:15 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 06:58:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:15 [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: jscpd +2021-11-19 06:58:15 [INFO] --------------------------- +2021-11-19 06:58:15 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 06:58:16 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:16 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 47.673ms +------ +2021-11-19 06:58:16 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 06:58:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:16 [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: jscpd +2021-11-19 06:58:16 [INFO] --------------------------- +2021-11-19 06:58:16 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 06:58:17 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:17 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.33ms +------ +2021-11-19 06:58:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 06:58: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 06:58:17 [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: jscpd +2021-11-19 06:58:17 [INFO] --------------------------- +2021-11-19 06:58:17 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 06:58:18 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:18 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.12ms +------ +2021-11-19 06:58:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 06:58: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 06:58: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: jscpd +2021-11-19 06:58:18 [INFO] --------------------------- +2021-11-19 06:58:18 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 06:58:19 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:19 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.515ms +------ +2021-11-19 06:58:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 06:58: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 06:58:20 [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: jscpd +2021-11-19 06:58:20 [INFO] --------------------------- +2021-11-19 06:58:20 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 06:58:21 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:21 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 45.343ms +------ +2021-11-19 06:58:21 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 06:58:21 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:21 [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: jscpd +2021-11-19 06:58:21 [INFO] --------------------------- +2021-11-19 06:58:21 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 06:58:22 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:22 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.883ms +------ +2021-11-19 06:58:22 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 06:58:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:22 [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: jscpd +2021-11-19 06:58:22 [INFO] --------------------------- +2021-11-19 06:58:22 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 06:58:23 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:23 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.324ms +------ +2021-11-19 06:58:23 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 06:58:23 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:23 [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: jscpd +2021-11-19 06:58:23 [INFO] --------------------------- +2021-11-19 06:58:23 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 06:58:24 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:24 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 36.515ms +------ +2021-11-19 06:58:24 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 06:58:24 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:24 [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: jscpd +2021-11-19 06:58:24 [INFO] --------------------------- +2021-11-19 06:58:24 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 06:58:25 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:25 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.372ms +------ +2021-11-19 06:58:25 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 06:58:25 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:25 [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: jscpd +2021-11-19 06:58:25 [INFO] --------------------------- +2021-11-19 06:58:25 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 06:58:27 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:27 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.927ms +------ +2021-11-19 06:58:27 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 06:58:27 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:27 [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: jscpd +2021-11-19 06:58:27 [INFO] --------------------------- +2021-11-19 06:58:27 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 06:58:28 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:28 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 74.493ms +------ +2021-11-19 06:58:28 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 06:58:28 [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 06:58:28 [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: jscpd +2021-11-19 06:58:28 [INFO] --------------------------- +2021-11-19 06:58:28 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 06:58:29 [INFO] - File:[dummy.go] was linted with [jscpd] successfully +2021-11-19 06:58:29 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.51ms +------ +2021-11-19 06:58:29 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 06:58:29 [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 06:58:29 [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: jscpd +2021-11-19 06:58:29 [INFO] --------------------------- +2021-11-19 06:58:29 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 06:58:30 [INFO] - File:[codec.go] was linted with [jscpd] successfully +2021-11-19 06:58:30 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 55.575ms +------ +2021-11-19 06:58:30 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 06:58:30 [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 06:58:30 [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: jscpd +2021-11-19 06:58:30 [INFO] --------------------------- +2021-11-19 06:58:30 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 06:58:31 [INFO] - File:[datetime.go] was linted with [jscpd] successfully +2021-11-19 06:58:31 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.916ms +------ +2021-11-19 06:58:31 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 06:58: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 06:58:31 [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: jscpd +2021-11-19 06:58:31 [INFO] --------------------------- +2021-11-19 06:58:31 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 06:58:33 [INFO] - File:[dummy.go] was linted with [jscpd] successfully +2021-11-19 06:58:33 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 28.419ms +------ +2021-11-19 06:58:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 06:58:33 [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 06:58:33 [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: jscpd +2021-11-19 06:58:33 [INFO] --------------------------- +2021-11-19 06:58:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 06:58:34 [INFO] - File:[entity.go] was linted with [jscpd] successfully +2021-11-19 06:58:34 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.346ms +------ +2021-11-19 06:58:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 06:58: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 06:58: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: jscpd +2021-11-19 06:58:34 [INFO] --------------------------- +2021-11-19 06:58:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 06:58:35 [INFO] - File:[entitywithtimestamps.go] was linted with [jscpd] successfully +2021-11-19 06:58:35 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.525ms +------ +2021-11-19 06:58:35 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 06:58:35 [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 06:58:35 [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: jscpd +2021-11-19 06:58:35 [INFO] --------------------------- +2021-11-19 06:58:35 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 06:58:36 [INFO] - File:[entitywithversions.go] was linted with [jscpd] successfully +2021-11-19 06:58:36 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 54.856ms +------ +2021-11-19 06:58:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 06:58: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 06:58:36 [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: jscpd +2021-11-19 06:58:36 [INFO] --------------------------- +2021-11-19 06:58:36 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 06:58:38 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:38 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 43.584ms +------ +2021-11-19 06:58:38 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 06:58:38 [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 06:58:38 [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: jscpd +2021-11-19 06:58:38 [INFO] --------------------------- +2021-11-19 06:58:38 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 06:58:39 [INFO] - File:[dummy.go] was linted with [jscpd] successfully +2021-11-19 06:58:39 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 39.837ms +------ +2021-11-19 06:58:39 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 06:58:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 06:58:39 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:39 [INFO] --------------------------- +2021-11-19 06:58:39 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 06:58:40 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:40 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.472ms +------ +2021-11-19 06:58:40 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 06:58: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 06:58:40 [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: jscpd +2021-11-19 06:58:40 [INFO] --------------------------- +2021-11-19 06:58:40 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 06:58:41 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:41 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 68.689ms +------ +2021-11-19 06:58:41 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 06:58: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 06:58:41 [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: jscpd +2021-11-19 06:58:41 [INFO] --------------------------- +2021-11-19 06:58:41 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 06:58:43 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:43 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 69.591ms +------ +2021-11-19 06:58:43 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 06:58: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 06:58:43 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:43 [INFO] --------------------------- +2021-11-19 06:58:43 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 06:58:44 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 06:58:44 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 47.728ms +------ +2021-11-19 06:58:44 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 06:58: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 06:58:44 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:44 [INFO] --------------------------- +2021-11-19 06:58:44 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 06:58:45 [INFO] - File:[go.mod] was linted with [jscpd] successfully +2021-11-19 06:58:45 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.916ms +------ +2021-11-19 06:58:45 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 06:58: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 06:58:45 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:45 [INFO] --------------------------- +2021-11-19 06:58:45 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 06:58:46 [INFO] - File:[go.sum] was linted with [jscpd] successfully +2021-11-19 06:58:46 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.783ms +------ +2021-11-19 06:58:46 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 06:58: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 06:58:46 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:46 [INFO] --------------------------- +2021-11-19 06:58:46 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 06:58:47 [INFO] - File:[jwt.go] was linted with [jscpd] successfully +2021-11-19 06:58:47 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.485ms +------ +2021-11-19 06:58:47 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 06:58: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 06:58:47 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:47 [INFO] --------------------------- +2021-11-19 06:58:47 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 06:58:48 [INFO] - File:[jwtclaims.go] was linted with [jscpd] successfully +2021-11-19 06:58:48 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.764ms +------ +2021-11-19 06:58:48 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 06:58:49 [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 06:58:49 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:49 [INFO] --------------------------- +2021-11-19 06:58:49 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 06:58:50 [INFO] - File:[jwtkey.go] was linted with [jscpd] successfully +2021-11-19 06:58:50 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 57.13ms +------ +2021-11-19 06:58:50 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 06:58:50 [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 06:58:50 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:50 [INFO] --------------------------- +2021-11-19 06:58:50 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 06:58:51 [INFO] - File:[keyfunc.go] was linted with [jscpd] successfully +2021-11-19 06:58:51 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 40.138ms +------ +2021-11-19 06:58:51 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 06:58:51 [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 06:58:51 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:51 [INFO] --------------------------- +2021-11-19 06:58:51 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 06:58:52 [INFO] - File:[ldflags.go] was linted with [jscpd] successfully +2021-11-19 06:58:52 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 27.812ms +------ +2021-11-19 06:58:52 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 06:58:52 [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 06:58:52 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:52 [INFO] --------------------------- +2021-11-19 06:58:52 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 06:58:53 [INFO] - File:[configure.go] was linted with [jscpd] successfully +2021-11-19 06:58:53 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 45.852ms +------ +2021-11-19 06:58:53 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 06:58:53 [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 06:58:53 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:53 [INFO] --------------------------- +2021-11-19 06:58:53 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 06:58:55 [INFO] - File:[fields.go] was linted with [jscpd] successfully +2021-11-19 06:58:55 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 33.295ms +------ +2021-11-19 06:58:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 06:58: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 06:58: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: jscpd +2021-11-19 06:58:55 [INFO] --------------------------- +2021-11-19 06:58:55 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 06:58:56 [INFO] - File:[fields_error.go] was linted with [jscpd] successfully +2021-11-19 06:58:56 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.502ms +------ +2021-11-19 06:58:56 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 06:58: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 06:58:56 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:56 [INFO] --------------------------- +2021-11-19 06:58:56 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 06:58:57 [INFO] - File:[fields_http.go] was linted with [jscpd] successfully +2021-11-19 06:58:57 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 47.105ms +------ +2021-11-19 06:58:57 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 06:58:57 [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 06:58:57 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:57 [INFO] --------------------------- +2021-11-19 06:58:57 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 06:58:58 [INFO] - File:[fields_messaging.go] was linted with [jscpd] successfully +2021-11-19 06:58:58 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.632ms +------ +2021-11-19 06:58:58 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 06:58:59 [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 06:58:59 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:58:59 [INFO] --------------------------- +2021-11-19 06:58:59 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 06:59:00 [INFO] - File:[fields_net.go] was linted with [jscpd] successfully +2021-11-19 06:59:00 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 28.86ms +------ +2021-11-19 06:59:00 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 06:59: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 06:59:00 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:00 [INFO] --------------------------- +2021-11-19 06:59:00 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 06:59:01 [INFO] - File:[fields_service.go] was linted with [jscpd] successfully +2021-11-19 06:59:01 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 43.967ms +------ +2021-11-19 06:59:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:01 [INFO] --------------------------- +2021-11-19 06:59:01 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 06:59:02 [INFO] - File:[fields_trace.go] was linted with [jscpd] successfully +2021-11-19 06:59:02 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.993ms +------ +2021-11-19 06:59:02 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 06:59:02 [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 06:59:02 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:02 [INFO] --------------------------- +2021-11-19 06:59:02 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 06:59:03 [INFO] - File:[log.go] was linted with [jscpd] successfully +2021-11-19 06:59:03 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 72.799ms +------ +2021-11-19 06:59:03 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 06:59:03 [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 06:59:03 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:03 [INFO] --------------------------- +2021-11-19 06:59:04 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 06:59:06 [INFO] - File:[with.go] was linted with [jscpd] successfully +2021-11-19 06:59:06 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 264.536ms +------ +2021-11-19 06:59:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 06:59: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 06:59:06 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:06 [INFO] --------------------------- +2021-11-19 06:59:06 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 06:59:08 [INFO] - File:[metrics.go] was linted with [jscpd] successfully +2021-11-19 06:59:08 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 66.114ms +------ +2021-11-19 06:59:08 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 06:59:08 [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 06:59:08 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:08 [INFO] --------------------------- +2021-11-19 06:59:08 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 06:59:09 [INFO] - File:[metrics_http.go] was linted with [jscpd] successfully +2021-11-19 06:59:09 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 52ms +------ +2021-11-19 06:59:09 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 06:59:09 [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 06:59:09 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:09 [INFO] --------------------------- +2021-11-19 06:59:09 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 06:59:11 [INFO] - File:[decode.go] was linted with [jscpd] successfully +2021-11-19 06:59:11 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 33.614ms +------ +2021-11-19 06:59:11 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:11 [INFO] --------------------------- +2021-11-19 06:59:11 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 06:59:12 [INFO] - File:[errors.go] was linted with [jscpd] successfully +2021-11-19 06:59:12 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 37.509ms +------ +2021-11-19 06:59:12 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:12 [INFO] --------------------------- +2021-11-19 06:59:12 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 06:59:13 [INFO] - File:[cookie.go] was linted with [jscpd] successfully +2021-11-19 06:59:13 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 65.288ms +------ +2021-11-19 06:59:13 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 06:59:13 [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 06:59:13 [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: jscpd +2021-11-19 06:59:13 [INFO] --------------------------- +2021-11-19 06:59:13 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 06:59:14 [INFO] - File:[domainprovider.go] was linted with [jscpd] successfully +2021-11-19 06:59:14 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 47.736ms +------ +2021-11-19 06:59:14 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 06:59:15 [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 06:59:15 [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: jscpd +2021-11-19 06:59:15 [INFO] --------------------------- +2021-11-19 06:59:15 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 06:59:16 [INFO] - File:[timeprovider.go] was linted with [jscpd] successfully +2021-11-19 06:59:16 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 39.812ms +------ +2021-11-19 06:59:16 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 06:59:16 [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 06:59:16 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:16 [INFO] --------------------------- +2021-11-19 06:59:16 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 06:59:17 [INFO] - File:[header.go] was linted with [jscpd] successfully +2021-11-19 06:59:17 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 41.895ms +------ +2021-11-19 06:59:17 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 06:59:17 [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 06:59:17 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:17 [INFO] --------------------------- +2021-11-19 06:59:17 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 06:59:18 [INFO] - File:[headervalues.go] was linted with [jscpd] successfully +2021-11-19 06:59:18 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 27.285ms +------ +2021-11-19 06:59:18 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 06:59: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 06:59:18 [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: jscpd +2021-11-19 06:59:18 [INFO] --------------------------- +2021-11-19 06:59:18 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 06:59:20 [INFO] - File:[basicauth.go] was linted with [jscpd] successfully +2021-11-19 06:59:20 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 62.529ms +------ +2021-11-19 06:59:20 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 06:59:20 [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 06:59:20 [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: jscpd +2021-11-19 06:59:20 [INFO] --------------------------- +2021-11-19 06:59:20 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 06:59:21 [INFO] - File:[cookietokenprovider.go] was linted with [jscpd] successfully +2021-11-19 06:59:21 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.587ms +------ +2021-11-19 06:59:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 06:59:21 [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 06:59:21 [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: jscpd +2021-11-19 06:59:21 [INFO] --------------------------- +2021-11-19 06:59:21 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 06:59:23 [INFO] - File:[cors.go] was linted with [jscpd] successfully +2021-11-19 06:59:23 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 163.559ms +------ +2021-11-19 06:59:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:23 [INFO] --------------------------- +2021-11-19 06:59:23 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 06:59:24 [INFO] - File:[headertokenprovider.go] was linted with [jscpd] successfully +2021-11-19 06:59:24 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 49.52ms +------ +2021-11-19 06:59:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 06:59:24 [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 06:59:24 [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: jscpd +2021-11-19 06:59:24 [INFO] --------------------------- +2021-11-19 06:59:24 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 06:59:25 [INFO] - File:[jwt.go] was linted with [jscpd] successfully +2021-11-19 06:59:25 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 96.484ms +------ +2021-11-19 06:59:26 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 06:59:26 [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 06:59:26 [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: jscpd +2021-11-19 06:59:26 [INFO] --------------------------- +2021-11-19 06:59:26 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 06:59:27 [INFO] - File:[logger.go] was linted with [jscpd] successfully +2021-11-19 06:59:27 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 52.327ms +------ +2021-11-19 06:59:27 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 06:59:27 [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 06:59:27 [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: jscpd +2021-11-19 06:59:27 [INFO] --------------------------- +2021-11-19 06:59:27 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 06:59:28 [INFO] - File:[middleware.go] was linted with [jscpd] successfully +2021-11-19 06:59:28 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.212ms +------ +2021-11-19 06:59:28 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 06:59:28 [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 06:59:28 [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: jscpd +2021-11-19 06:59:28 [INFO] --------------------------- +2021-11-19 06:59:28 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 06:59:30 [INFO] - File:[poweredbyheader.go] was linted with [jscpd] successfully +2021-11-19 06:59:30 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 50.77ms +------ +2021-11-19 06:59:30 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 06:59:30 [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 06:59:30 [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: jscpd +2021-11-19 06:59:30 [INFO] --------------------------- +2021-11-19 06:59:30 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 06:59:31 [INFO] - File:[recover.go] was linted with [jscpd] successfully +2021-11-19 06:59:31 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 79.886ms +------ +2021-11-19 06:59:31 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 06:59:31 [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 06:59:31 [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: jscpd +2021-11-19 06:59:31 [INFO] --------------------------- +2021-11-19 06:59:31 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 06:59:33 [INFO] - File:[requestid.go] was linted with [jscpd] successfully +2021-11-19 06:59:33 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 54.26ms +------ +2021-11-19 06:59:33 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 06:59:33 [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 06:59:33 [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: jscpd +2021-11-19 06:59:33 [INFO] --------------------------- +2021-11-19 06:59:33 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 06:59:34 [INFO] - File:[requesturiblacklistskipper.go] was linted with [jscpd] successfully +2021-11-19 06:59:34 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.737ms +------ +2021-11-19 06:59:34 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 06:59:34 [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 06:59:34 [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: jscpd +2021-11-19 06:59:34 [INFO] --------------------------- +2021-11-19 06:59:34 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 06:59:35 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [jscpd] successfully +2021-11-19 06:59:35 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 44.27ms +------ +2021-11-19 06:59:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:35 [INFO] --------------------------- +2021-11-19 06:59:36 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 06:59:37 [INFO] - File:[responsetime.go] was linted with [jscpd] successfully +2021-11-19 06:59:37 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 47.274ms +------ +2021-11-19 06:59:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:37 [INFO] --------------------------- +2021-11-19 06:59:37 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 06:59:38 [INFO] - File:[responsewriter.go] was linted with [jscpd] successfully +2021-11-19 06:59:38 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 41.877ms +------ +2021-11-19 06:59:38 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 06:59:38 [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 06:59:38 [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: jscpd +2021-11-19 06:59:38 [INFO] --------------------------- +2021-11-19 06:59:38 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 06:59:39 [INFO] - File:[serverheader.go] was linted with [jscpd] successfully +2021-11-19 06:59:39 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.352ms +------ +2021-11-19 06:59:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 06:59:39 [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 06:59:39 [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: jscpd +2021-11-19 06:59:39 [INFO] --------------------------- +2021-11-19 06:59:39 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 06:59:41 [INFO] - File:[sessionid.go] was linted with [jscpd] successfully +2021-11-19 06:59:41 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 69.007ms +------ +2021-11-19 06:59:41 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 06:59:41 [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 06:59:41 [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: jscpd +2021-11-19 06:59:41 [INFO] --------------------------- +2021-11-19 06:59:41 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 06:59:42 [INFO] - File:[skip.go] was linted with [jscpd] successfully +2021-11-19 06:59:42 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.891ms +------ +2021-11-19 06:59:42 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 06:59:42 [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 06:59:42 [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: jscpd +2021-11-19 06:59:42 [INFO] --------------------------- +2021-11-19 06:59:42 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 06:59:43 [INFO] - File:[skipper.go] was linted with [jscpd] successfully +2021-11-19 06:59:43 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 31.071ms +------ +2021-11-19 06:59:43 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 06:59:43 [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 06:59:43 [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: jscpd +2021-11-19 06:59:43 [INFO] --------------------------- +2021-11-19 06:59:43 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 06:59:45 [INFO] - File:[telemetry.go] was linted with [jscpd] successfully +2021-11-19 06:59:45 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 50.215ms +------ +2021-11-19 06:59:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 06:59:45 [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 06:59:45 [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: jscpd +2021-11-19 06:59:45 [INFO] --------------------------- +2021-11-19 06:59:45 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 06:59:46 [INFO] - File:[tokenauth.go] was linted with [jscpd] successfully +2021-11-19 06:59:46 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 189.546ms +------ +2021-11-19 06:59:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 06:59: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 06:59:47 [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: jscpd +2021-11-19 06:59:47 [INFO] --------------------------- +2021-11-19 06:59:47 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 06:59:48 [INFO] - File:[tokenprovider.go] was linted with [jscpd] successfully +2021-11-19 06:59:48 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 28.372ms +------ +2021-11-19 06:59:48 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:48 [INFO] --------------------------- +2021-11-19 06:59:48 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 06:59:49 [INFO] - File:[publisher.go] was linted with [jscpd] successfully +2021-11-19 06:59:49 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 82.887ms +------ +2021-11-19 06:59:49 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 06:59:49 [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 06:59:49 [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: jscpd +2021-11-19 06:59:49 [INFO] --------------------------- +2021-11-19 06:59:49 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 06:59:51 [INFO] - File:[stream.go] was linted with [jscpd] successfully +2021-11-19 06:59:51 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 115.29ms +------ +2021-11-19 06:59:51 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:51 [INFO] --------------------------- +2021-11-19 06:59:51 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 06:59:52 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 06:59:52 [ERROR] Found errors in [jscpd] linter! +2021-11-19 06:59:52 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + + 48 │ 39 │ , func(msg *nats.Msg) { + 49 │ 40 │  ctx := context.Background() + 50 │ 41 │  if err := handler(ctx, s.stream.l, msg); err != nil { + 51 │ 42 │  s.errorHandler(err) + 52 │ 43 │  } + 53 │ 44 │  }, s.SubOpts(opts...)...) + 54 │ 45 │ } + 55 │ 46 │ + 56 │ 47 │ func (s *Subscriber) Unmarshal + +Found 1 clones. +ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 06:59:52 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + + 48 │ 39 │ , func(msg *nats.Msg) { + 49 │ 40 │  ctx := context.Background() + 50 │ 41 │  if err := handler(ctx, s.stream.l, msg); err != nil { + 51 │ 42 │  s.errorHandler(err) + 52 │ 43 │  } + 53 │ 44 │  }, s.SubOpts(opts...)...) + 54 │ 45 │ } + 55 │ 46 │ + 56 │ 47 │ func (s *Subscriber) Unmarshal + +Found 1 clones. +ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 06:59:52 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 06:59:52 [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 06:59:52 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:52 [INFO] --------------------------- +2021-11-19 06:59:52 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 06:59:53 [INFO] - File:[middleware.go] was linted with [jscpd] successfully +2021-11-19 06:59:53 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 27.125ms +------ +2021-11-19 06:59:53 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 06:59: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 06:59:53 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:53 [INFO] --------------------------- +2021-11-19 06:59:53 [INFO] File:[/tmp/lint/option.go] +2021-11-19 06:59:54 [INFO] - File:[option.go] was linted with [jscpd] successfully +2021-11-19 06:59:54 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.693ms +------ +2021-11-19 06:59:54 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 06:59: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 06:59:54 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:54 [INFO] --------------------------- +2021-11-19 06:59:54 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 06:59:56 [INFO] - File:[error.go] was linted with [jscpd] successfully +2021-11-19 06:59:56 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 25.752ms +------ +2021-11-19 06:59:56 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 06:59:56 [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 06:59:56 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:56 [INFO] --------------------------- +2021-11-19 06:59:56 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 06:59:57 [INFO] - File:[collection.go] was linted with [jscpd] successfully +2021-11-19 06:59:57 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 177.377ms +------ +2021-11-19 06:59:57 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 06:59:57 [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 06:59:57 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 06:59:57 [INFO] --------------------------- +2021-11-19 06:59:57 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 06:59:58 [INFO] - File:[entity.go] was linted with [jscpd] successfully +2021-11-19 06:59:58 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.598ms +------ +2021-11-19 06:59:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:58 [INFO] --------------------------- +2021-11-19 06:59:58 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 06:59:59 [INFO] - File:[persistor.go] was linted with [jscpd] successfully +2021-11-19 06:59:59 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 66.242ms +------ +2021-11-19 06:59:59 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 06:59: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 06:59: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: jscpd +2021-11-19 06:59:59 [INFO] --------------------------- +2021-11-19 06:59:59 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:00:00 [INFO] - File:[utils.go] was linted with [jscpd] successfully +2021-11-19 07:00:00 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 26.07ms +------ +2021-11-19 07:00:00 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:00:00 [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 07:00:00 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:00 [INFO] --------------------------- +2021-11-19 07:00:00 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:00:02 [INFO] - File:[persistor.go] was linted with [jscpd] successfully +2021-11-19 07:00:02 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 126.218ms +------ +2021-11-19 07:00:02 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:00:02 [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 07:00:02 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:02 [INFO] --------------------------- +2021-11-19 07:00:02 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:00:03 [INFO] - File:[server.go] was linted with [jscpd] successfully +2021-11-19 07:00:03 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 107.622ms +------ +2021-11-19 07:00:03 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:00:03 [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 07:00:03 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:03 [INFO] --------------------------- +2021-11-19 07:00:03 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:00:05 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:00:05 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:00:05 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + + 117 │ 104 │ ) + 118 │ 105 │  } + 119 │ 106 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/info"); s.NoError(err) { + 120 │ 107 │  s.Equal(http.StatusOK, statusCode) + 121 │ 108 │  } + 122 │ 109 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/debug"); s.NoError(err) { + 123 │ 110 │  s.Equal(http.StatusOK, statusCode) + 124 │ 111 │  } + 125 │ 112 │  }) + 126 │ 113 │ + 127 │ 114 │  s.Run("enable caller" + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + + 148 │ 73 │ () { + 149 │ 74 │  if os.Getenv("CI") != "" { + 150 │ 75 │  s.T().Skip() + 151 │ 76 │  } + 152 │ 77 │ + 153 │ 78 │  s.svr.AddServices( + 154 │ 79 │  keel.NewServiceHTTP(log.Logger(), "test", ":55000", s.mux), + 155 │ 80 │  ) + 156 │ 81 │ + 157 │ 82 │  go s.svr.Run() + 158 │ 83 │ + 159 │ 84 │  if statusCode, _, err := s.httpGet("http://localhost:55000/ok"); s.NoError(err) { + 160 │ 85 │  s.l + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + + 202 │ 187 │ ); err != nil { + 203 │ 188 │  return 0, "", err + 204 │ 189 │  } else if resp, err := http.DefaultClient.Do(req); err != nil { + 205 │ 190 │  return 0, "", err + 206 │ 191 │  } else if body, err := ioutil.ReadAll(resp.Body); err != nil { + 207 │ 192 │  return 0, "", err + 208 │ 193 │  } else if err := resp.Body.Close(); err != nil { + 209 │ 194 │  return 0, "", err + 210 │ 195 │  } else { + 211 │ 196 │  return resp.StatusCode, string(bytes.TrimSpace(body)), nil + 212 │ 197 │  } + 213 │ 198 │ } + 214 │ 199 │ + 215 │ 200 │ // In order for 'go test' to run this suite, we need to create + +Found 3 clones. +ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:05 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + + 117 │ 104 │ ) + 118 │ 105 │  } + 119 │ 106 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/info"); s.NoError(err) { + 120 │ 107 │  s.Equal(http.StatusOK, statusCode) + 121 │ 108 │  } + 122 │ 109 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/debug"); s.NoError(err) { + 123 │ 110 │  s.Equal(http.StatusOK, statusCode) + 124 │ 111 │  } + 125 │ 112 │  }) + 126 │ 113 │ + 127 │ 114 │  s.Run("enable caller" + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + + 148 │ 73 │ () { + 149 │ 74 │  if os.Getenv("CI") != "" { + 150 │ 75 │  s.T().Skip() + 151 │ 76 │  } + 152 │ 77 │ + 153 │ 78 │  s.svr.AddServices( + 154 │ 79 │  keel.NewServiceHTTP(log.Logger(), "test", ":55000", s.mux), + 155 │ 80 │  ) + 156 │ 81 │ + 157 │ 82 │  go s.svr.Run() + 158 │ 83 │ + 159 │ 84 │  if statusCode, _, err := s.httpGet("http://localhost:55000/ok"); s.NoError(err) { + 160 │ 85 │  s.l + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + + 202 │ 187 │ ); err != nil { + 203 │ 188 │  return 0, "", err + 204 │ 189 │  } else if resp, err := http.DefaultClient.Do(req); err != nil { + 205 │ 190 │  return 0, "", err + 206 │ 191 │  } else if body, err := ioutil.ReadAll(resp.Body); err != nil { + 207 │ 192 │  return 0, "", err + 208 │ 193 │  } else if err := resp.Body.Close(); err != nil { + 209 │ 194 │  return 0, "", err + 210 │ 195 │  } else { + 211 │ 196 │  return resp.StatusCode, string(bytes.TrimSpace(body)), nil + 212 │ 197 │  } + 213 │ 198 │ } + 214 │ 199 │ + 215 │ 200 │ // In order for 'go test' to run this suite, we need to create + +Found 3 clones. +ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:05 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:00: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 07:00:05 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:05 [INFO] --------------------------- +2021-11-19 07:00:05 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:00:06 [INFO] - File:[service.go] was linted with [jscpd] successfully +2021-11-19 07:00:06 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 25.98ms +------ +2021-11-19 07:00:06 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:00: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 07:00:06 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:06 [INFO] --------------------------- +2021-11-19 07:00:06 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:00:07 [INFO] - File:[servicehttp.go] was linted with [jscpd] successfully +2021-11-19 07:00:07 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 52.925ms +------ +2021-11-19 07:00:07 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:00:07 [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 07:00:07 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:07 [INFO] --------------------------- +2021-11-19 07:00:07 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:00:08 [INFO] - File:[servicehttpprometheus.go] was linted with [jscpd] successfully +2021-11-19 07:00:08 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 33.34ms +------ +2021-11-19 07:00:08 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:00:08 [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 07:00:08 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:08 [INFO] --------------------------- +2021-11-19 07:00:08 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:00:09 [INFO] - File:[servicehttpviper.go] was linted with [jscpd] successfully +2021-11-19 07:00:09 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 40.734ms +------ +2021-11-19 07:00:09 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:00: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 07:00:09 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:09 [INFO] --------------------------- +2021-11-19 07:00:09 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:00:10 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:00:10 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:00:10 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + + 79 │ 36 │ current := log.AtomicLevel().Level() + 80 │ 37 │  disableCaller := log.IsDisableCaller() + 81 │ 38 │  disableStacktrace := log.IsDisableStacktrace() + 82 │ 39 │  _ = enc.Encode(payload{ + 83 │ 40 │  Level: ¤t, + 84 │ 41 │  DisableCaller: &disableCaller, + 85 │ 42 │  DisableStacktrace: &disableStacktrace, + 86 │ 43 │  }) + 87 │ 44 │  default + +Found 1 clones. +ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:10 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + + 79 │ 36 │ current := log.AtomicLevel().Level() + 80 │ 37 │  disableCaller := log.IsDisableCaller() + 81 │ 38 │  disableStacktrace := log.IsDisableStacktrace() + 82 │ 39 │  _ = enc.Encode(payload{ + 83 │ 40 │  Level: ¤t, + 84 │ 41 │  DisableCaller: &disableCaller, + 85 │ 42 │  DisableStacktrace: &disableStacktrace, + 86 │ 43 │  }) + 87 │ 44 │  default + +Found 1 clones. +ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:10 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:00: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 07:00:10 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:10 [INFO] --------------------------- +2021-11-19 07:00:10 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:00:12 [INFO] - File:[error.go] was linted with [jscpd] successfully +2021-11-19 07:00:12 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.892ms +------ +2021-11-19 07:00:12 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:00:12 [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 07:00:12 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:12 [INFO] --------------------------- +2021-11-19 07:00:12 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:00:13 [INFO] - File:[meter.go] was linted with [jscpd] successfully +2021-11-19 07:00:13 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.676ms +------ +2021-11-19 07:00:13 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:00:13 [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 07:00:13 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:13 [INFO] --------------------------- +2021-11-19 07:00:13 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:00:14 [INFO] - File:[span.go] was linted with [jscpd] successfully +2021-11-19 07:00:14 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 40.492ms +------ +2021-11-19 07:00:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:00: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 07:00:14 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:14 [INFO] --------------------------- +2021-11-19 07:00:14 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:00:15 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:00:15 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:00:15 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + + 170 │ 127 │ ) + 171 │ 128 │  if err != nil { + 172 │ 129 │  return nil, nil, nil, err + 173 │ 130 │  } + 174 │ 131 │ + 175 │ 132 │  tracerProvider := sdktrace.NewTracerProvider( + 176 │ 133 │  sdktrace.WithBatcher(exporter), + 177 │ 134 │  sdktrace.WithResource(resource), + 178 │ 135 │  sdktrace.WithSampler(sdktrace.AlwaysSample()), + 179 │ 136 │  ) + 180 │ 137 │ + 181 │ 138 │  controller := otelcontroller.New( + 182 │ 139 │  otelprocessor.New( + 183 │ 140 │  otelsimple.NewWithInexpensiveDistribution(), + 184 │ 141 │  exporter, + 185 │ 142 │  ), + 186 │ 143 │  otelcontroller.WithResource + +Found 1 clones. +ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:15 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + + 170 │ 127 │ ) + 171 │ 128 │  if err != nil { + 172 │ 129 │  return nil, nil, nil, err + 173 │ 130 │  } + 174 │ 131 │ + 175 │ 132 │  tracerProvider := sdktrace.NewTracerProvider( + 176 │ 133 │  sdktrace.WithBatcher(exporter), + 177 │ 134 │  sdktrace.WithResource(resource), + 178 │ 135 │  sdktrace.WithSampler(sdktrace.AlwaysSample()), + 179 │ 136 │  ) + 180 │ 137 │ + 181 │ 138 │  controller := otelcontroller.New( + 182 │ 139 │  otelprocessor.New( + 183 │ 140 │  otelsimple.NewWithInexpensiveDistribution(), + 184 │ 141 │  exporter, + 185 │ 142 │  ), + 186 │ 143 │  otelcontroller.WithResource + +Found 1 clones. +ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:15 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:00: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 07:00:15 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:15 [INFO] --------------------------- +2021-11-19 07:00:15 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:00:16 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:00:16 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:00:16 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + + 67 │ 48 │ if resp, err := c.Client.Do(req); err != nil { + 68 │ 49 │  return nil, 0, err + 69 │ 50 │  } else if body, err := c.readBody(resp); err != nil { + 70 │ 51 │  return nil, 0, err + 71 │ 52 │  } else { + 72 │ 53 │  return body, resp.StatusCode, nil + 73 │ 54 │  } + 74 │ 55 │ } + 75 │ 56 │ + 76 │ 57 │ func (c *HTTPClient) readBody + +Found 1 clones. +ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:16 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + + 67 │ 48 │ if resp, err := c.Client.Do(req); err != nil { + 68 │ 49 │  return nil, 0, err + 69 │ 50 │  } else if body, err := c.readBody(resp); err != nil { + 70 │ 51 │  return nil, 0, err + 71 │ 52 │  } else { + 72 │ 53 │  return body, resp.StatusCode, nil + 73 │ 54 │  } + 74 │ 55 │ } + 75 │ 56 │ + 76 │ 57 │ func (c *HTTPClient) readBody + +Found 1 clones. +ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:00:17 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:00: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 07:00:17 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:17 [INFO] --------------------------- +2021-11-19 07:00:17 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:00:18 [INFO] - File:[log.go] was linted with [jscpd] successfully +2021-11-19 07:00:18 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 33.148ms +------ +2021-11-19 07:00:18 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:00:18 [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 07:00:18 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:18 [INFO] --------------------------- +2021-11-19 07:00:18 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:00:19 [INFO] - File:[option.go] was linted with [jscpd] successfully +2021-11-19 07:00:19 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.267ms +------ +2021-11-19 07:00:19 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:00:19 [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 07:00:19 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:19 [INFO] --------------------------- +2021-11-19 07:00:19 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:00:20 [INFO] - File:[server.go] was linted with [jscpd] successfully +2021-11-19 07:00:20 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 49.455ms +------ +2021-11-19 07:00:20 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:00:20 [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 07:00:20 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:20 [INFO] --------------------------- +2021-11-19 07:00:20 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:00:21 [INFO] - File:[service.go] was linted with [jscpd] successfully +2021-11-19 07:00:21 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 26.793ms +------ +2021-11-19 07:00:21 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:00: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 07:00:21 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:00:21 [INFO] --------------------------- +2021-11-19 07:00:21 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:00:22 [INFO] - File:[servicehttp.go] was linted with [jscpd] successfully +2021-11-19 07:00:22 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 47.053ms +------ +2021-11-19 07:00:22 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:00: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 07:00:22 [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: jscpd +2021-11-19 07:00:22 [INFO] --------------------------- +2021-11-19 07:00:22 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:00:24 [INFO] - File:[basicauth.go] was linted with [jscpd] successfully +2021-11-19 07:00:24 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 25.287ms +------ +2021-11-19 07:00:24 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:00:24 [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 07:00:24 [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: jscpd +2021-11-19 07:00:24 [INFO] --------------------------- +2021-11-19 07:00:24 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:00:25 [INFO] - File:[errors.go] was linted with [jscpd] successfully +2021-11-19 07:00:25 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 51.549ms +------ +2021-11-19 07:00:25 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:00:25 [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 07:00:25 [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: jscpd +2021-11-19 07:00:25 [INFO] --------------------------- +2021-11-19 07:00:25 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:00:26 [INFO] - File:[request.go] was linted with [jscpd] successfully +2021-11-19 07:00:26 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.293ms +------ +2021-11-19 07:00:26 [DEBUG] Running linter for the JSON language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 07:00:26 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:26 [DEBUG] Running linter for the JSONC language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 07:00:26 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:26 [DEBUG] Running linter for the JSX language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 07:00:26 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:26 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 07:00:26 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:26 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 07:00:26 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:26 [DEBUG] Running linter for the LATEX language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 07:00:26 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:26 [DEBUG] Running linter for the LUA language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 07:00:26 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:26 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 07:00:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 07:00:26 [0;34m[DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 07:00:26 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 07:00:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 07:00:26 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 07:00:26 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 07:00:26 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 07:00:26 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:00:26 [INFO]  +2021-11-19 07:00:26 [INFO] ---------------------------------------------- +2021-11-19 07:00:26 [INFO] ---------------------------------------------- +2021-11-19 07:00:26 [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 07:00:26 [INFO] Linting [MARKDOWN] files... +2021-11-19 07:00:26 [INFO] ---------------------------------------------- +2021-11-19 07:00:26 [INFO] ---------------------------------------------- +2021-11-19 07:00:26 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:00:27 [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 07:00:27 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 07:00:27 [INFO] --------------------------- +2021-11-19 07:00:27 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:00:27 [DEBUG] Found errors. Error code: 1, File type: MARKDOWN, Error on missing exec bit: false +2021-11-19 07:00:27 [ERROR] Found errors in [markdownlint] linter! +2021-11-19 07:00:27 [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 07:00:27 [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 07:00:27 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 07:00:27 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 07:00:27 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:27 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 07:00:27 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 07:00:27 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 07:00:27 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 07:00:27 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 07:00:27 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 07:00:27 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:00:27 [INFO]  +2021-11-19 07:00:27 [INFO] ---------------------------------------------- +2021-11-19 07:00:27 [INFO] ---------------------------------------------- +2021-11-19 07:00:27 [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 07:00:27 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 07:00:27 [INFO] ---------------------------------------------- +2021-11-19 07:00:27 [INFO] ---------------------------------------------- +2021-11-19 07:00:27 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:00:27 [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 07:00:27 [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 07:00:27 [INFO] --------------------------- +2021-11-19 07:00:27 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:00:29 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 07:00:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:00:29 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PERL language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 07:00:29 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 07:00:29 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 07:00:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:29 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 07:00:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 07:00:29 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 07:00:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 07:00:29 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the R language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the RAKU language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the RUBY language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to shfmt... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to shfmt -d... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SHELL_SHFMT... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_SHELL_SHFMT file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking shfmt linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[SHELL_SHFMT] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the STATES language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the SQL language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the TEKTON language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 07:00:30 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 07:00:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 07:00:30 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 07:00:30 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 07:00:30 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 07:00:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:30 [DEBUG] Running linter for the TSX language... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 07:00:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:00:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 07:00:31 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 07:00:31 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:00:31 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 07:00:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:31 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:00:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 07:00:31 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 07:00:31 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:00:31 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 07:00:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:31 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 07:00:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 07:00:31 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 07:00:31 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 07:00:31 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 07:00:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:31 [DEBUG] Running linter for the XML language... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 07:00:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 07:00:31 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 07:00:31 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 07:00:31 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 07:00:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:00:31 [DEBUG] Running linter for the YAML language... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 07:00:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 07:00:31 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 07:00:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 07:00:31 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.golangci.yml +2021-11-19 07:00:31 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 07:00:31 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.golangci.yml +2021-11-19 07:00:31 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:00:31 [INFO]  +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [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/.golangci.yml +2021-11-19 07:00:31 [INFO] Linting [YAML] files... +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:00: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 07:00:31 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 07:00:31 [INFO] --------------------------- +2021-11-19 07:00:31 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:00:31 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 07:00:31 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [INFO] The script has completed +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [INFO] ---------------------------------------------- +2021-11-19 07:00:31 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 07:00:31 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 07:00:31 [ERROR] ERRORS FOUND in GO:[109] +2021-11-19 07:00:31 [DEBUG] Calling Multi-Status API for GO with status error +2021-11-19 07:00:31 [ERROR] ERRORS FOUND in JSCPD:[5] +2021-11-19 07:00:31 [DEBUG] Calling Multi-Status API for JSCPD with status error +2021-11-19 07:00:31 [ERROR] ERRORS FOUND in MARKDOWN:[1] +2021-11-19 07:00:31 [DEBUG] Calling Multi-Status API for MARKDOWN with status error +2021-11-19 07:00:31 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 07:00:31 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 07:00:31 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:04:38 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:04:38 [INFO] --------------------------------------------- +2021-11-19 07:04:38 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:04:38 [INFO] - Image Creation Date:[] +2021-11-19 07:04:38 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:04:38 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:04:38 [INFO] --------------------------------------------- +2021-11-19 07:04:38 [INFO] --------------------------------------------- +2021-11-19 07:04:38 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:04:38 [INFO] - https://github.com/github/super-linter +2021-11-19 07:04:38 [INFO] --------------------------------------------- +2021-11-19 07:04:38 [DEBUG] --------------------------------------------- +2021-11-19 07:04:38 [DEBUG] Linter Version Info: +2021-11-19 07:04:38 [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 07:04:38 [DEBUG] --------------------------------------------- +2021-11-19 07:04:38 [INFO] -------------------------------------------- +2021-11-19 07:04:38 [INFO] Gathering GitHub information... +2021-11-19 07:04:38 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:04:38 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:04:38 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:04:38 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:04:38 [INFO] -------------------------------------------- +2021-11-19 07:04:38 [INFO] Gathering user validation information... +2021-11-19 07:04:38 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for ARM linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for BASH linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_BASH variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_BASH variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for CPP linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for CSS linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for DART linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for ENV linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for GO linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for HTML linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for JAVA linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 07:04:38 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 07:04:38 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 07:04:38 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for JSCPD linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_JSCPD variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_JSCPD variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for JSON linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for JSONC linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for JSX linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for LATEX linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for LUA linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PERL linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for R linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for RAKU linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for RUBY linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for SHELL_SHFMT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_SHELL_SHFMT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_SHELL_SHFMT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for STATES linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for SQL linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for TSX linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for XML linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 07:04:39 [DEBUG] Defining variables for YAML linter... +2021-11-19 07:04:39 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 07:04:39 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 07:04:39 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:04:39 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:04:39 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [BASH] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [DART] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [JSCPD] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [R] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [SHELL_SHFMT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:04:39 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [XML] files in code base... +2021-11-19 07:04:40 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 07:04:40 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:04:40 [DEBUG] --------------------------------------------- +2021-11-19 07:04:40 [DEBUG] Runner:[root] +2021-11-19 07:04:40 [DEBUG] ENV: +2021-11-19 07:04:40 [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_GO=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_JSCPD=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=1a765a70b19b +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.qLp74D3zRY +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=true +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=true +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 07:04:40 [DEBUG] --------------------------------------------- +2021-11-19 07:04:40 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:04:40 [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 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:04:40 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for ARM... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:04:40 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for BASH... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:04:40 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:04:40 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:04:40 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:04:40 [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 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:04:40 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:04:40 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:04:40 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for CPP... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:04:40 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:04:40 [DEBUG] Loading rules for CSS... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:04:40 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for DART... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for DART... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:04:40 [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 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:04:40 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:04:40 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:04:40 [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 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:04:40 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:04:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:04:40 [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 07:04:40 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:04:40 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:04:40 [DEBUG] Loading rules for ENV... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:04:40 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:04:40 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:04:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:40 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:04:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:40 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:04:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:40 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:04:41 [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 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:04:41 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:04:41 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:04:41 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for GO... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for GO... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:04:41 [INFO] ---------------------------------------------- +2021-11-19 07:04:41 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:04:41 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:04:41 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:04:41 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:04:41 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for HTML... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:04:41 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for JAVA... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:04:41 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:04:41 [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 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:04:41 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:04:41 [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 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:04:41 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:04:41 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for JSON... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:04:41 [DEBUG] Loading rules for JSONC... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:04:41 [DEBUG] Loading rules for JSX... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:04:41 [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 07:04:41 [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 07:04:41 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:04:41 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:04:41 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:04:41 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:04:41 [DEBUG] Loading rules for LATEX... +2021-11-19 07:04:41 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:04:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:41 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:04:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:41 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:04:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:41 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:04:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:04:42 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for LUA... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:04:42 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:04:42 [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 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:04:42 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:04:42 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:04:42 [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 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:04:42 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PERL... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:04:42 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:04:42 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:04:42 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:04:42 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:04:42 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:04:42 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:04:42 [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 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:04:42 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:04:42 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:04:42 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:04:42 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:04:42 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:04:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:42 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:04:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:42 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:04:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:42 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:04:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:04:42 [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 07:04:42 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:04:42 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:04:42 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:04:43 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for R... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for R... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:04:43 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for RAKU... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:04:43 [DEBUG] Loading rules for RUBY... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:04:43 [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 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:04:43 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:04:43 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:04:43 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:04:43 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:04:43 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:04:43 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:04:43 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:04:43 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for STATES... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:04:43 [DEBUG] Loading rules for SQL... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:04:43 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:04:43 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:04:43 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:04:43 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:04:43 [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 07:04:43 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:04:43 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:04:43 [DEBUG] Loading rules for TSX... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:43 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:04:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:04:43 [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 07:04: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 07:04:43 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:04:43 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:04:43 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:04:43 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:04:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:43 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:04:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:43 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:04:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:44 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:04:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:04:44 [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 07:04:44 [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 07:04:44 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:04:44 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:04:44 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:04:44 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:04:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:44 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:04:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:44 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:04:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:44 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:04:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:04:44 [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 07:04:44 [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 07:04:44 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:04:44 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:04:44 [DEBUG] Loading rules for XML... +2021-11-19 07:04:44 [DEBUG] Getting linter rules for XML... +2021-11-19 07:04:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:44 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:04:44 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:04:44 [DEBUG] Loading rules for YAML... +2021-11-19 07:04:44 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:04:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:04:44 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:04:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:04:44 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:04:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:04:44 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:04:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:04:44 [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 07:04:44 [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 07:04:44 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:04:44 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:04:44 [DEBUG] ENV:[browser] +2021-11-19 07:04:44 [DEBUG] ENV:[es6] +2021-11-19 07:04:44 [DEBUG] ENV:[jest] +2021-11-19 07:04:44 [DEBUG] ENV:[browser] +2021-11-19 07:04:44 [DEBUG] ENV:[es6] +2021-11-19 07:04:44 [DEBUG] ENV:[jest] +2021-11-19 07:04:44 [DEBUG] --- Linter commands --- +2021-11-19 07:04:44 [DEBUG] ----------------------- +2021-11-19 07:04:44 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:04:44 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:04:44 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:04:44 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:04:44 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:04:44 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:04:44 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:04:44 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:04:44 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:04:44 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:04:44 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:04:44 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 07:04:44 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:04:44 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:04:44 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:04:44 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:04:44 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:04:44 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:04:44 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:04:44 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:04:44 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:04:44 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:04:44 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:04:44 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:04:44 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:04:44 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:04:44 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:04:44 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:04:44 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:04:44 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:04:44 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:04:44 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:04:44 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:04:44 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:04:44 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:04:44 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:04:44 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:04:44 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:04:44 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:04:44 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:04:44 [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 07:04:44 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:04:44 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:04:44 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:04:44 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:04:44 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:04:44 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:04:44 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:04:44 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:04:44 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:04:44 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:04:44 [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 07:04:44 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:04:44 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:04:44 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:04:44 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:04:44 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:04:44 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:04:44 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:04:44 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:04:44 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:04:44 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:04:44 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:04:44 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:04:44 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:04:45 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:04:45 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:04:45 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:04:45 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:04:45 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:04:45 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:04:45 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:04:45 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:04:45 [DEBUG] --------------------------------------------- +2021-11-19 07:04:45 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:04:45 [DEBUG] Building file list... +2021-11-19 07:04:45 [DEBUG] Validate all code base: true... +2021-11-19 07:04:45 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:04:45 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:04:45 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:04:45 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:04:45 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:04:45 [DEBUG] ---------------------------------------------- +2021-11-19 07:04:45 [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 07:04:45 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:04:45 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:04:46 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:04:46 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:04:46 [DEBUG] ----------------------- +2021-11-19 07:04:46 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:04:46 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:04:46 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:04:46 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:04:46 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:04:46 [DEBUG] --------------------------------------------- +2021-11-19 07:04:46 [INFO] --------------------------------- +2021-11-19 07:04:46 [INFO] ------ File list to check: ------ +2021-11-19 07:04:46 [INFO] --------------------------------- +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:04:46 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:04:46 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:04:46 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:04:46 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:04:46 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:04:46 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:04:46 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:04:46 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:04:46 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:04:46 [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 07:04:46 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:04:46 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:04:46 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:46 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:46 [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 07:04:46 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:46 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:04:47 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:04:47 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:04:47 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:04:47 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:04:47 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:04:47 [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 07:04:47 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:04:47 [DEBUG]  +2021-11-19 07:04:47 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:04:48 [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 07:04:48 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:04:48 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:04:48 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:04:48 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:04:48 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:04:48 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:04:48 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:04:48 [DEBUG]  +2021-11-19 07:04:48 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:04:48 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:04:48 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:04:49 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 07:04:49 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:04:49 [DEBUG]  +2021-11-19 07:04:49 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07:04:50 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 07:04:50 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:04:50 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 07:04:50 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:04:50 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 07:04:50 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:04:50 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 07:04:50 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07:04:50 [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 07:04:50 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:04:50 [DEBUG]  +2021-11-19 07:04:50 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07:04:51 [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 07:04:51 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:04:51 [DEBUG]  +2021-11-19 07:04:51 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07:04:52 [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 07:04:52 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:04:52 [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 07:04:52 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:04:52 [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 07:04:52 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:04:52 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:04:52 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:04:52 [DEBUG]  +2021-11-19 07:04:52 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:04:53 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:04:53 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:04:53 [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 07:04:53 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:04:53 [DEBUG]  +2021-11-19 07:04:53 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:04:54 [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 07:04:54 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:04:54 [DEBUG]  +2021-11-19 07:04:54 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:04:54 [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 07:04:54 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:04:54 [DEBUG]  +2021-11-19 07:04:54 [INFO] ---------------------------------------------- +2021-11-19 07:04:54 [INFO] Successfully gathered list of files... +2021-11-19 07:04:54 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:04:54 [DEBUG] ------------------------------------ +2021-11-19 07:04:54 [DEBUG] ENV: +2021-11-19 07:04:54 [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_GO=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_JSCPD=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=1a765a70b19b +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.qLp74D3zRY +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=true +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=true +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 07:04:54 [DEBUG] ------------------------------------ +2021-11-19 07:04:54 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the ARM language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 07:04:54 [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 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the BASH language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to shellcheck... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to shellcheck --color --external-sources... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_BASH file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking shellcheck linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[BASH] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the CPP language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the CSS language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the DART language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 07:04:54 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:04:54 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:04:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:04:54 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 07:04:54 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 07:04:54 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 07:04:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 07:04:54 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:04:54 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 07:04:54 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:04:54 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:04:54 [INFO]  +2021-11-19 07:04:54 [INFO] ---------------------------------------------- +2021-11-19 07:04:54 [INFO] ---------------------------------------------- +2021-11-19 07:04:54 [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/.gitignore /tmp/lint/.golangci.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/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 07:04:54 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 07:04:55 [INFO] ---------------------------------------------- +2021-11-19 07:04:55 [INFO] ---------------------------------------------- +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 07:04:55 [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 07:04:55 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 07:04:55 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 07:04:55 [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 07:04:55 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 07:04:55 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:04:55 [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 07:04:55 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:04:55 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 07:04:55 [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 07:04:55 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 07:04:55 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 07:04:55 [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 07:04:55 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 07:04:55 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:04: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 07:04:55 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:04:55 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:04:55 [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 07:04:55 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:04:55 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:04:55 [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 07:04:55 [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 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:04:55 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:04:55 [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 07:04:55 [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 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:04:55 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:04: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 07:04:55 [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 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:04:55 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:04:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:55 [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 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:04:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:04:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:55 [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 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:04:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:55 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 07:04:55 [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 07:04:55 [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 07:04:55 [INFO] --------------------------- +2021-11-19 07:04:55 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 07:04:56 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 07:04:56 [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 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 07:04:56 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:04:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:56 [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 07:04:56 [INFO] --------------------------- +2021-11-19 07:04:56 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:04:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:56 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:04:57 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:04:57 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:04:57 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:04:57 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:04:57 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:04:57 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:04:57 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:04:57 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:04:57 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:04:57 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:04:57 [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 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:04:57 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:04:57 [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 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:04:57 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:04:57 [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 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:04:57 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:04:57 [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 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:04:57 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:04:57 [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 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:04:57 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:04:57 [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 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:04:57 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:04:57 [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 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:04:57 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:04:57 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:04:57 [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 07:04:57 [INFO] --------------------------- +2021-11-19 07:04:57 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:04:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:04:58 [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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:04:58 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:04: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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:04:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:04: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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:04:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:04: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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:04:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:04: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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:04:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 07:04: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 07:04:58 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 07:04:58 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 07:04: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 07:04:58 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 07:04:58 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:04:58 [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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:04:58 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:04:58 [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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:04:58 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:04:58 [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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:04:58 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:04:58 [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 07:04:58 [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 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:04:58 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:58 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:04:58 [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 07:04:58 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:04:58 [INFO] --------------------------- +2021-11-19 07:04:58 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:04:59 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:04:59 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:04:59 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07: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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:04:59 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:04:59 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:04:59 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:04:59 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07: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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:04:59 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:04:59 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:04:59 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:04:59 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:04:59 [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 07:04:59 [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 07:04:59 [INFO] --------------------------- +2021-11-19 07:04:59 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:04:59 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:04:59 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:05:00 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:05:00 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07: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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:05:00 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:05:00 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:05:00 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:05:00 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:05:00 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:05:00 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07: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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:05:00 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:05:00 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:05:00 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:05:00 [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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:05:00 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:05: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 07:05:00 [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 07:05:00 [INFO] --------------------------- +2021-11-19 07:05:00 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:05:01 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:05:01 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:05:01 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:05:01 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:05:01 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:05:01 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:05:01 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:05:01 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:05:01 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:05:01 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:05:01 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:01 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:05:01 [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 07:05:01 [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 07:05:01 [INFO] --------------------------- +2021-11-19 07:05:01 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:05:02 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:05:02 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:05:02 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:05:02 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:05:02 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:05:02 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:05:02 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:05:02 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:05:02 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:05: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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:05:02 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:05:02 [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 07:05:02 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:05:02 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:05:02 [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 07:05:02 [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 07:05:02 [INFO] --------------------------- +2021-11-19 07:05:02 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:05:02 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:02 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:05:03 [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 07:05:03 [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 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:05:03 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:05:03 [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 07:05:03 [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 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:05:03 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:05:03 [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 07:05:03 [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 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:05:03 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:05:03 [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 07:05:03 [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 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:05:03 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:05:03 [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 07:05:03 [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 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:05:03 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:05:03 [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 07:05:03 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:05:03 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:05:03 [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 07:05:03 [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 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:05:03 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:05:03 [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 07:05:03 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:05:03 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:05:03 [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 07:05:03 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:05:03 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:05:03 [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 07:05:03 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:05:03 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:05:03 [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 07:05:03 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:05:03 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:05:03 [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 07:05:03 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:05:03 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:03 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:05:03 [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 07:05:03 [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 07:05:03 [INFO] --------------------------- +2021-11-19 07:05:03 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:05:04 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:05:04 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:05:04 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:05:04 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:05:04 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:05:04 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:05: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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:05:04 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:05: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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:05:04 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:05: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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:05:04 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:05:04 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:05:04 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:05:04 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:05:04 [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 07:05:04 [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 07:05:04 [INFO] --------------------------- +2021-11-19 07:05:04 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:05:04 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:04 [DEBUG] Running linter for the ENV language... +2021-11-19 07:05:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:05:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:05:04 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 07:05:04 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 07:05:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 07:05:04 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 07:05:04 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 07:05:04 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 07:05:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:05:04 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:05:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:05:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:05:04 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:05:04 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:05:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:05:04 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:05:04 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:05:04 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:05:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:05:05 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:05:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:05:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:05:05 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 07:05:05 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 07:05:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 07:05:05 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:05:05 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 07:05:05 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:05:05 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:05:05 [INFO]  +2021-11-19 07:05:05 [INFO] ---------------------------------------------- +2021-11-19 07:05:05 [INFO] ---------------------------------------------- +2021-11-19 07:05:05 [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/.gitignore /tmp/lint/.golangci.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/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 07:05:05 [INFO] Linting [GITLEAKS] files... +2021-11-19 07:05:05 [INFO] ---------------------------------------------- +2021-11-19 07:05:05 [INFO] ---------------------------------------------- +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 07:05:05 [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 07:05:05 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 07:05:05 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 07:05:05 [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 07:05:05 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 07:05:05 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:05:05 [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 07:05:05 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:05:05 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 07:05:05 [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 07:05:05 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 07:05:05 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 07:05:05 [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 07:05:05 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 07:05:05 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:05:05 [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 07:05:05 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:05:05 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:05:05 [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 07:05:05 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:05:05 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:05:05 [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 07:05:05 [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 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:05:05 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:05:05 [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 07:05:05 [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 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:05:05 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:05:05 [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 07:05:05 [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 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:05:05 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07: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 07:05:05 [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 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:05:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:05 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07: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 07:05:05 [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 07:05:05 [INFO] --------------------------- +2021-11-19 07:05:05 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 07:05:06 [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 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 07:05:06 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 07:05:06 [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 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 07:05:06 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:05:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:06 [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 07:05:06 [INFO] --------------------------- +2021-11-19 07:05:06 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:05:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:05: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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:05:07 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:05: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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:05:07 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:05: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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:05:07 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:05: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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:05:07 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:05:07 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:05:07 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:05:07 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:05:07 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:05:07 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:05:07 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:05:07 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:05: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 07:05:07 [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 07:05:07 [INFO] --------------------------- +2021-11-19 07:05:07 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:05:07 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:07 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:05:07 [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 07:05:07 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:05:08 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:05: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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:05:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:05: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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:05:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:05: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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:05:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:05: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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:05:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 07:05: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 07:05:08 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 07:05:08 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 07:05: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 07:05:08 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 07:05:08 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07: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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:05:08 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:05:08 [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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:05:08 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:05:08 [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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:05:08 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:05:08 [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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:05:08 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:05:08 [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 07:05:08 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:05:08 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:08 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:05:08 [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 07:05:08 [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 07:05:08 [INFO] --------------------------- +2021-11-19 07:05:08 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:05:08 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 07:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:05:09 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07: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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:05:09 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:05:09 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:05:09 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:05:09 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:05: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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:05:09 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:05:09 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:05:09 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:05:09 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:05:09 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:05:09 [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 07:05:09 [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 07:05:09 [INFO] --------------------------- +2021-11-19 07:05:09 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:05:09 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 07:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:09 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:05:09 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:05:10 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:05:10 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:05:10 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:05:10 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:05:10 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:05:10 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:05:10 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:05:10 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:05:10 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:05:10 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:05:10 [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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:05:10 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:05: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 07:05:10 [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 07:05:10 [INFO] --------------------------- +2021-11-19 07:05:10 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:05:10 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 07:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:05:11 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:05:11 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:05:11 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:05:11 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:05:11 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:05:11 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:05:11 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:05:11 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:05:11 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:11 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:05:11 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 07:05:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:05:11 [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 07:05:11 [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 07:05:11 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:05:12 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:05:12 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:05:12 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:05:12 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:05:12 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:05:12 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:05:12 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:05:12 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:05:12 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:05: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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:05:12 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:05:12 [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 07:05:12 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:05:12 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:05:12 [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 07:05:12 [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 07:05:12 [INFO] --------------------------- +2021-11-19 07:05:12 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:05:12 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 07:05:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:12 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:05:13 [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 07:05:13 [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 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:05:13 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:05:13 [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 07:05:13 [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 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:05:13 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:05:13 [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 07:05:13 [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 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:05:13 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:05:13 [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 07:05:13 [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 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:05:13 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:05:13 [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 07:05:13 [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 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:05:13 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:05:13 [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 07:05:13 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:05:13 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:05:13 [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 07:05:13 [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 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:05:13 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:05:13 [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 07:05:13 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:05:13 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:05:13 [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 07:05:13 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:05:13 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:05:13 [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 07:05:13 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:05:13 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:05:13 [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 07:05:13 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:05:13 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:05:13 [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 07:05:13 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:05:13 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 07:05:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:13 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:05:13 [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 07:05:13 [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 07:05:13 [INFO] --------------------------- +2021-11-19 07:05:13 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:05:14 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:05:14 [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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:05:14 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:05:14 [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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:05:14 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:05: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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:05:14 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:05:14 [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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:05:14 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:05:14 [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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:05:14 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:05: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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:05:14 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:05: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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:05:14 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:05: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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:05:14 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:05: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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:05:14 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:05:14 [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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:05:14 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:05:14 [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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:05:14 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:05:14 [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 07:05:14 [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 07:05:14 [INFO] --------------------------- +2021-11-19 07:05:14 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:05:14 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 07:05:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:05:14 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:05:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:05:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:05:15 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 07:05:15 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 07:05:15 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 07:05:15 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 07:05:15 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 07:05:15 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 07:05:15 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:05:15 [DEBUG] Running linter for the GO language... +2021-11-19 07:05:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:05:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:05:15 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:05:15 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:05:15 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:05:15 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:05:15 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:05:15 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:05:15 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:05:15 [INFO]  +2021-11-19 07:05:15 [INFO] ---------------------------------------------- +2021-11-19 07:05:15 [INFO] ---------------------------------------------- +2021-11-19 07:05:15 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:05:15 [INFO] Linting [GO] files... +2021-11-19 07:05:15 [INFO] ---------------------------------------------- +2021-11-19 07:05:15 [INFO] ---------------------------------------------- +2021-11-19 07:05:15 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:05:15 [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 07:05:15 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:15 [INFO] --------------------------- +2021-11-19 07:05:15 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:05:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:16 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:05:16 [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 07:05:16 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:16 [INFO] --------------------------- +2021-11-19 07:05:16 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:05:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:16 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:05:16 [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 07:05:16 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:16 [INFO] --------------------------- +2021-11-19 07:05:16 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:05:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:17 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:05: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 07:05:17 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:17 [INFO] --------------------------- +2021-11-19 07:05:17 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:05:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:18 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:05: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 07:05: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: go +2021-11-19 07:05:18 [INFO] --------------------------- +2021-11-19 07:05:18 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:05:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:19 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:05: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 07:05:19 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:19 [INFO] --------------------------- +2021-11-19 07:05:19 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:05:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:05: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 07:05:20 [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: go +2021-11-19 07:05:20 [INFO] --------------------------- +2021-11-19 07:05:20 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:05:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:21 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:05:21 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:21 [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: go +2021-11-19 07:05:21 [INFO] --------------------------- +2021-11-19 07:05:21 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:05:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:22 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:05:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:22 [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: go +2021-11-19 07:05:22 [INFO] --------------------------- +2021-11-19 07:05:22 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:05:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:23 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:05:23 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:23 [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: go +2021-11-19 07:05:23 [INFO] --------------------------- +2021-11-19 07:05:23 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:05:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:23 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:05:23 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:23 [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: go +2021-11-19 07:05:23 [INFO] --------------------------- +2021-11-19 07:05:23 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:05:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:24 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:05:24 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:24 [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: go +2021-11-19 07:05:24 [INFO] --------------------------- +2021-11-19 07:05:24 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:05:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:25 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:05:25 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:25 [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: go +2021-11-19 07:05:25 [INFO] --------------------------- +2021-11-19 07:05:25 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:05:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:26 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:05:26 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:26 [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: go +2021-11-19 07:05:26 [INFO] --------------------------- +2021-11-19 07:05:26 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:05:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:27 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:05:27 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:27 [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: go +2021-11-19 07:05:27 [INFO] --------------------------- +2021-11-19 07:05:27 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:05:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:27 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:05:28 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:28 [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: go +2021-11-19 07:05:28 [INFO] --------------------------- +2021-11-19 07:05:28 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:05:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:28 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:05:28 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:28 [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: go +2021-11-19 07:05:28 [INFO] --------------------------- +2021-11-19 07:05:28 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:05:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:29 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:05:29 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:29 [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: go +2021-11-19 07:05:29 [INFO] --------------------------- +2021-11-19 07:05:29 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:05:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:30 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:05: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 07:05:30 [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: go +2021-11-19 07:05:30 [INFO] --------------------------- +2021-11-19 07:05:30 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:05:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:31 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:05: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 07:05: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: go +2021-11-19 07:05:31 [INFO] --------------------------- +2021-11-19 07:05:31 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:05:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:05: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 07:05:32 [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: go +2021-11-19 07:05:32 [INFO] --------------------------- +2021-11-19 07:05:32 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:05:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:05: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 07:05: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: go +2021-11-19 07:05:33 [INFO] --------------------------- +2021-11-19 07:05:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:05:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:05: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 07:05: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: go +2021-11-19 07:05:33 [INFO] --------------------------- +2021-11-19 07:05:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:05:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:05: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 07:05:34 [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: go +2021-11-19 07:05:34 [INFO] --------------------------- +2021-11-19 07:05:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:05:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:35 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:05:35 [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 07:05:35 [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: go +2021-11-19 07:05:35 [INFO] --------------------------- +2021-11-19 07:05:35 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:05:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:05: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 07:05:36 [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: go +2021-11-19 07:05:36 [INFO] --------------------------- +2021-11-19 07:05:36 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:05:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:37 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:05: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 07:05: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: go +2021-11-19 07:05:37 [INFO] --------------------------- +2021-11-19 07:05:37 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:05:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:38 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:05:38 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:38 [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: go +2021-11-19 07:05:38 [INFO] --------------------------- +2021-11-19 07:05:38 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:05:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:38 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:05:38 [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 07:05:38 [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: go +2021-11-19 07:05:38 [INFO] --------------------------- +2021-11-19 07:05:38 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:05:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:39 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:05:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:05:39 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:39 [INFO] --------------------------- +2021-11-19 07:05:39 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:05:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:41 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:05: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 07:05:41 [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: go +2021-11-19 07:05:41 [INFO] --------------------------- +2021-11-19 07:05:41 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:05:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:42 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:05: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 07:05: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: go +2021-11-19 07:05:42 [INFO] --------------------------- +2021-11-19 07:05:42 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:05:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:43 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:05: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 07:05:43 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:43 [INFO] --------------------------- +2021-11-19 07:05:43 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:05:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:44 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:05: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 07:05:44 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:44 [INFO] --------------------------- +2021-11-19 07:05:44 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:05:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:45 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:05:45 [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 07:05:45 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:45 [INFO] --------------------------- +2021-11-19 07:05:45 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:05:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:46 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:05:46 [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 07:05:46 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:46 [INFO] --------------------------- +2021-11-19 07:05:46 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:05:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:47 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:05: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 07:05:47 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:47 [INFO] --------------------------- +2021-11-19 07:05:47 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:05:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:48 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:05: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 07:05:48 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:48 [INFO] --------------------------- +2021-11-19 07:05:48 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:05:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:49 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:05:49 [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 07:05:49 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:49 [INFO] --------------------------- +2021-11-19 07:05:49 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:05:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:50 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:05:50 [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 07:05:50 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:50 [INFO] --------------------------- +2021-11-19 07:05:50 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:05:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:51 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07:05: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 07:05:51 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:51 [INFO] --------------------------- +2021-11-19 07:05:51 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:05:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:52 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:05:52 [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 07:05:52 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:52 [INFO] --------------------------- +2021-11-19 07:05:52 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:05:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:53 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:05:53 [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 07:05:53 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:53 [INFO] --------------------------- +2021-11-19 07:05:53 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:05:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:54 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:05:54 [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 07:05:54 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:54 [INFO] --------------------------- +2021-11-19 07:05:54 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:05:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:05: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 07:05: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: go +2021-11-19 07:05:55 [INFO] --------------------------- +2021-11-19 07:05:55 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:05:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:56 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:05:56 [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 07:05:56 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:56 [INFO] --------------------------- +2021-11-19 07:05:56 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:05:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:57 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:05: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 07:05:57 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:57 [INFO] --------------------------- +2021-11-19 07:05:57 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:05:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:58 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:05:58 [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 07:05:58 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:58 [INFO] --------------------------- +2021-11-19 07:05:58 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:05:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:58 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:05:58 [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 07:05:58 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:05:58 [INFO] --------------------------- +2021-11-19 07:05:58 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:05:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:05:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:05:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:05:59 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:05:59 [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 07:06:00 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:00 [INFO] --------------------------- +2021-11-19 07:06:00 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:06:01 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:01 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:01 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:01 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:01 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:01 [INFO] --------------------------- +2021-11-19 07:06:01 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:06:02 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:02 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:02 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:02 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:06:03 [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 07:06:03 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:03 [INFO] --------------------------- +2021-11-19 07:06:03 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:06:03 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:03 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:03 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:04 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:04 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:06:04 [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 07:06:04 [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: go +2021-11-19 07:06:04 [INFO] --------------------------- +2021-11-19 07:06:04 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:06:04 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:04 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:04 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:04 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:04 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:06:05 [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 07:06:05 [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: go +2021-11-19 07:06:05 [INFO] --------------------------- +2021-11-19 07:06:05 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:06:05 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:05 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:05 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:05 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:06:05 [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 07:06:05 [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: go +2021-11-19 07:06:05 [INFO] --------------------------- +2021-11-19 07:06:05 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:06:06 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:06 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:06 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:06 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:06 [INFO] --------------------------- +2021-11-19 07:06:06 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:06:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:07 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:07 [INFO] --------------------------- +2021-11-19 07:06:07 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:06:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:06:08 [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 07:06:08 [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: go +2021-11-19 07:06:08 [INFO] --------------------------- +2021-11-19 07:06:08 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:06:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:06:09 [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 07:06:09 [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: go +2021-11-19 07:06:09 [INFO] --------------------------- +2021-11-19 07:06:09 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:06:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:06:10 [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 07:06:10 [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: go +2021-11-19 07:06:10 [INFO] --------------------------- +2021-11-19 07:06:10 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:06:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:12 [INFO] --------------------------- +2021-11-19 07:06:12 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:06:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:13 [INFO] --------------------------- +2021-11-19 07:06:13 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:06:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:06:14 [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 07:06:14 [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: go +2021-11-19 07:06:14 [INFO] --------------------------- +2021-11-19 07:06:14 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:06:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:15 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:06:15 [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 07:06:15 [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: go +2021-11-19 07:06:15 [INFO] --------------------------- +2021-11-19 07:06:15 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:06:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:15 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:06:15 [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 07:06:15 [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: go +2021-11-19 07:06:15 [INFO] --------------------------- +2021-11-19 07:06:15 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:06:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:16 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:06:16 [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 07:06:16 [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: go +2021-11-19 07:06:16 [INFO] --------------------------- +2021-11-19 07:06:16 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:06:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:17 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:06:17 [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 07:06:17 [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: go +2021-11-19 07:06:17 [INFO] --------------------------- +2021-11-19 07:06:17 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:06:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:18 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:06:18 [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 07:06:18 [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: go +2021-11-19 07:06:18 [INFO] --------------------------- +2021-11-19 07:06:18 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:06:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:19 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:06:19 [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 07:06:19 [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: go +2021-11-19 07:06:19 [INFO] --------------------------- +2021-11-19 07:06:19 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:06:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:20 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:06:20 [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 07:06:20 [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: go +2021-11-19 07:06:20 [INFO] --------------------------- +2021-11-19 07:06:20 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:06:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:06:21 [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 07:06:21 [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: go +2021-11-19 07:06:21 [INFO] --------------------------- +2021-11-19 07:06:21 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:06:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:06:22 [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 07:06:22 [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: go +2021-11-19 07:06:22 [INFO] --------------------------- +2021-11-19 07:06:22 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:06:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:23 [INFO] --------------------------- +2021-11-19 07:06:23 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:06:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:24 [INFO] --------------------------- +2021-11-19 07:06:24 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:06:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:25 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:06:25 [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 07:06:25 [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: go +2021-11-19 07:06:25 [INFO] --------------------------- +2021-11-19 07:06:25 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:06:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:25 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:06:25 [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 07:06:25 [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: go +2021-11-19 07:06:25 [INFO] --------------------------- +2021-11-19 07:06:25 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:06:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:26 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:06:26 [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 07:06:26 [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: go +2021-11-19 07:06:26 [INFO] --------------------------- +2021-11-19 07:06:26 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:06:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:27 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:06:27 [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 07:06:27 [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: go +2021-11-19 07:06:27 [INFO] --------------------------- +2021-11-19 07:06:27 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:06:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:28 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:06:28 [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 07:06:28 [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: go +2021-11-19 07:06:28 [INFO] --------------------------- +2021-11-19 07:06:28 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:06:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:29 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:06:29 [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 07:06:29 [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: go +2021-11-19 07:06:29 [INFO] --------------------------- +2021-11-19 07:06:29 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:06:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:30 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:06:30 [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 07:06:30 [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: go +2021-11-19 07:06:30 [INFO] --------------------------- +2021-11-19 07:06:30 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:06:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:31 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:06:31 [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 07:06:31 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:31 [INFO] --------------------------- +2021-11-19 07:06:31 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:06:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:32 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:06:32 [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 07:06:32 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:32 [INFO] --------------------------- +2021-11-19 07:06:32 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:06:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:33 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:06:34 [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 07:06:34 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:34 [INFO] --------------------------- +2021-11-19 07:06:34 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:06:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:35 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:06:35 [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 07:06:35 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:35 [INFO] --------------------------- +2021-11-19 07:06:35 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:06:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:36 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:06: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 07:06:36 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:36 [INFO] --------------------------- +2021-11-19 07:06:36 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:06:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:37 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:37 [INFO] --------------------------- +2021-11-19 07:06:37 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:06:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:37 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:37 [INFO] --------------------------- +2021-11-19 07:06:37 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:06:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:38 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:38 [INFO] --------------------------- +2021-11-19 07:06:38 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:06:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:39 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:06:39 [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 07:06:39 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:39 [INFO] --------------------------- +2021-11-19 07:06:39 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:06:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:40 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:06:40 [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 07:06:40 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:40 [INFO] --------------------------- +2021-11-19 07:06:40 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:06:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:41 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:06:41 [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 07:06:41 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:41 [INFO] --------------------------- +2021-11-19 07:06:41 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:06:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:42 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:06: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 07:06:42 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:42 [INFO] --------------------------- +2021-11-19 07:06:42 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:06:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:43 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:06:43 [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 07:06:43 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:43 [INFO] --------------------------- +2021-11-19 07:06:43 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:06:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:44 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:06:44 [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 07:06:44 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:44 [INFO] --------------------------- +2021-11-19 07:06:44 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:06:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:45 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:06:45 [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 07:06:45 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:45 [INFO] --------------------------- +2021-11-19 07:06:45 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:06:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:46 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:06:46 [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 07:06:46 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:46 [INFO] --------------------------- +2021-11-19 07:06:46 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:06:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:47 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:06:47 [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 07:06:47 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:47 [INFO] --------------------------- +2021-11-19 07:06:47 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:06:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:48 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:06:48 [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 07:06:48 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:48 [INFO] --------------------------- +2021-11-19 07:06:48 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:06:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:49 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:06:49 [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 07:06:49 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:49 [INFO] --------------------------- +2021-11-19 07:06:49 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:06:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:50 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:06:50 [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 07:06:50 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:50 [INFO] --------------------------- +2021-11-19 07:06:50 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:06:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:51 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:06:51 [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 07:06:51 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:51 [INFO] --------------------------- +2021-11-19 07:06:51 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:06:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:53 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:06: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 07:06:53 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:53 [INFO] --------------------------- +2021-11-19 07:06:53 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:06:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:54 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:06:54 [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 07:06:54 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:54 [INFO] --------------------------- +2021-11-19 07:06:54 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:06:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:55 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07: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 07:06:55 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:55 [INFO] --------------------------- +2021-11-19 07:06:55 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:06:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:56 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:06:56 [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 07:06:56 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:06:56 [INFO] --------------------------- +2021-11-19 07:06:56 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:06:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:57 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:06:57 [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 07:06:57 [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: go +2021-11-19 07:06:57 [INFO] --------------------------- +2021-11-19 07:06:57 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:06:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:58 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:06: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 07:06: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: go +2021-11-19 07:06:58 [INFO] --------------------------- +2021-11-19 07:06:58 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:06:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:06:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:06:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:06:59 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:06:59 [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 07:06:59 [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: go +2021-11-19 07:06:59 [INFO] --------------------------- +2021-11-19 07:06:59 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:07:00 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:07:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:07:00 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:07:00 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:07:00 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 07:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 07:07:00 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 07:07:00 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 07:07:00 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 07:07:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:07:00 [DEBUG] Running linter for the GROOVY language... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 07:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 07:07:00 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 07:07:00 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 07:07:00 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 07:07:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:07:00 [DEBUG] Running linter for the HTML language... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 07:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 07:07:00 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 07:07:00 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 07:07:00 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 07:07:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:07:00 [DEBUG] Running linter for the JAVA language... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 07:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 07:07:00 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 07:07:00 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 07:07:00 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 07:07:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:07:00 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 07:07:00 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 07:07:00 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:07:00 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 07:07:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:07:00 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 07:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 07:07:00 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 07:07:00 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 07:07:00 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 07:07:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:07:00 [DEBUG] Running linter for the JSCPD language... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 07:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_NAME to jscpd... +2021-11-19 07:07:00 [DEBUG] Setting LINTER_COMMAND to jscpd --config /action/lib/.automation/.jscpd.json... +2021-11-19 07:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSCPD... +2021-11-19 07:07:00 [DEBUG] FILE_ARRAY_JSCPD file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:07:00 [DEBUG] Invoking jscpd linter. TEST_CASE_RUN: false +2021-11-19 07:07:00 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:07:00 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:07:00 [INFO]  +2021-11-19 07:07:00 [INFO] ---------------------------------------------- +2021-11-19 07:07:00 [INFO] ---------------------------------------------- +2021-11-19 07:07:00 [DEBUG] Running LintCodebase. FILE_TYPE: JSCPD. Linter name: jscpd, linter command: jscpd --config /action/lib/.automation/.jscpd.json, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:07:00 [INFO] Linting [JSCPD] files... +2021-11-19 07:07:00 [INFO] ---------------------------------------------- +2021-11-19 07:07:00 [INFO] ---------------------------------------------- +2021-11-19 07:07:00 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 07:07:00 [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 07:07:00 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:00 [INFO] --------------------------- +2021-11-19 07:07:01 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 07:07:02 [INFO] - File:[.editorconfig] was linted with [jscpd] successfully +2021-11-19 07:07:02 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.726ms +------ +2021-11-19 07:07:02 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 07:07:02 [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 07:07:02 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:02 [INFO] --------------------------- +2021-11-19 07:07:02 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 07:07:03 [INFO] - File:[.gitignore] was linted with [jscpd] successfully +2021-11-19 07:07:03 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.859ms +------ +2021-11-19 07:07:03 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:07:03 [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 07:07:03 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:03 [INFO] --------------------------- +2021-11-19 07:07:03 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:07:05 [INFO] - File:[.golangci.yml] was linted with [jscpd] successfully +2021-11-19 07:07:05 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 56.552ms +------ +2021-11-19 07:07:05 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 07:07:05 [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 07:07:05 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:05 [INFO] --------------------------- +2021-11-19 07:07:05 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 07:07:06 [INFO] - File:[LICENSE] was linted with [jscpd] successfully +2021-11-19 07:07:06 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.776ms +------ +2021-11-19 07:07:06 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 07:07:06 [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 07:07:06 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:06 [INFO] --------------------------- +2021-11-19 07:07:06 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 07:07:07 [INFO] - File:[Makefile] was linted with [jscpd] successfully +2021-11-19 07:07:07 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.789ms +------ +2021-11-19 07:07:07 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:07: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 07:07:07 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:07 [INFO] --------------------------- +2021-11-19 07:07:07 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:07:08 [INFO] - File:[README.md] was linted with [jscpd] successfully +2021-11-19 07:07:08 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.152ms +------ +2021-11-19 07:07:08 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:07: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 07:07:08 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:08 [INFO] --------------------------- +2021-11-19 07:07:08 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:07:09 [INFO] - File:[closer.go] was linted with [jscpd] successfully +2021-11-19 07:07:09 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 36.954ms +------ +2021-11-19 07:07:09 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:07:10 [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 07:07:10 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:10 [INFO] --------------------------- +2021-11-19 07:07:10 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:07:11 [INFO] - File:[config.go] was linted with [jscpd] successfully +2021-11-19 07:07:11 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 254.381ms +------ +2021-11-19 07:07:11 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:07:11 [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 07:07:11 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:11 [INFO] --------------------------- +2021-11-19 07:07:11 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:07:12 [INFO] - File:[env.go] was linted with [jscpd] successfully +2021-11-19 07:07:12 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 61.624ms +------ +2021-11-19 07:07:12 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:07: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 07:07:12 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:12 [INFO] --------------------------- +2021-11-19 07:07:12 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:07:14 [INFO] - File:[errors.go] was linted with [jscpd] successfully +2021-11-19 07:07:14 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 39.362ms +------ +2021-11-19 07:07:14 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:07:14 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:14 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:14 [INFO] --------------------------- +2021-11-19 07:07:14 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:07:15 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:15 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 65.792ms +------ +2021-11-19 07:07:15 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:07:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:15 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:15 [INFO] --------------------------- +2021-11-19 07:07:15 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:07:16 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:16 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.845ms +------ +2021-11-19 07:07:16 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 07:07:16 [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 07:07:16 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:16 [INFO] --------------------------- +2021-11-19 07:07:16 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 07:07:18 [INFO] - File:[go.mod] was linted with [jscpd] successfully +2021-11-19 07:07:18 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 1.676ms +------ +2021-11-19 07:07:18 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 07:07: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 07:07:18 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:18 [INFO] --------------------------- +2021-11-19 07:07:18 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 07:07:19 [INFO] - File:[go.sum] was linted with [jscpd] successfully +2021-11-19 07:07:19 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.752ms +------ +2021-11-19 07:07:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:07: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 07:07:19 [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: jscpd +2021-11-19 07:07:19 [INFO] --------------------------- +2021-11-19 07:07:19 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:07:20 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:20 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.401ms +------ +2021-11-19 07:07:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:07: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 07:07:20 [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: jscpd +2021-11-19 07:07:20 [INFO] --------------------------- +2021-11-19 07:07:20 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:07:21 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:21 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 44.081ms +------ +2021-11-19 07:07:21 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:07:21 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:21 [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: jscpd +2021-11-19 07:07:21 [INFO] --------------------------- +2021-11-19 07:07:21 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:07:23 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:23 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 66.662ms +------ +2021-11-19 07:07:23 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:07:23 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:23 [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: jscpd +2021-11-19 07:07:23 [INFO] --------------------------- +2021-11-19 07:07:23 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:07:24 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:24 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 53.254ms +------ +2021-11-19 07:07:24 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:07:24 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:24 [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: jscpd +2021-11-19 07:07:24 [INFO] --------------------------- +2021-11-19 07:07:24 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:07:25 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:25 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 33.623ms +------ +2021-11-19 07:07:25 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:07:25 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:25 [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: jscpd +2021-11-19 07:07:25 [INFO] --------------------------- +2021-11-19 07:07:25 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:07:27 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:27 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.465ms +------ +2021-11-19 07:07:27 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:07:27 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:27 [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: jscpd +2021-11-19 07:07:27 [INFO] --------------------------- +2021-11-19 07:07:27 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:07:28 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:28 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.468ms +------ +2021-11-19 07:07:28 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:07:28 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:28 [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: jscpd +2021-11-19 07:07:28 [INFO] --------------------------- +2021-11-19 07:07:28 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:07:29 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:29 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.587ms +------ +2021-11-19 07:07:29 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:07:29 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:29 [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: jscpd +2021-11-19 07:07:29 [INFO] --------------------------- +2021-11-19 07:07:29 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:07:30 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:30 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 45.944ms +------ +2021-11-19 07:07:30 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:07: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 07:07:30 [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: jscpd +2021-11-19 07:07:30 [INFO] --------------------------- +2021-11-19 07:07:30 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:07:32 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:32 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 51.038ms +------ +2021-11-19 07:07:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:07: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 07:07:32 [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: jscpd +2021-11-19 07:07:32 [INFO] --------------------------- +2021-11-19 07:07:32 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:07:33 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:33 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.166ms +------ +2021-11-19 07:07:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:07: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 07:07: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: jscpd +2021-11-19 07:07:33 [INFO] --------------------------- +2021-11-19 07:07:33 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:07:34 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:34 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 41.993ms +------ +2021-11-19 07:07:34 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:07: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 07:07:34 [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: jscpd +2021-11-19 07:07:34 [INFO] --------------------------- +2021-11-19 07:07:34 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:07:36 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:36 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 49.425ms +------ +2021-11-19 07:07:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:07: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 07:07: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: jscpd +2021-11-19 07:07:36 [INFO] --------------------------- +2021-11-19 07:07:36 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:07:37 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:37 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 56.18ms +------ +2021-11-19 07:07:37 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:07: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 07:07:37 [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: jscpd +2021-11-19 07:07:37 [INFO] --------------------------- +2021-11-19 07:07:37 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:07:38 [INFO] - File:[dummy.go] was linted with [jscpd] successfully +2021-11-19 07:07:38 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 36.978ms +------ +2021-11-19 07:07:38 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:07:38 [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 07:07:38 [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: jscpd +2021-11-19 07:07:38 [INFO] --------------------------- +2021-11-19 07:07:38 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:07:39 [INFO] - File:[codec.go] was linted with [jscpd] successfully +2021-11-19 07:07:39 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 57.351ms +------ +2021-11-19 07:07:39 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:07:39 [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 07:07:39 [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: jscpd +2021-11-19 07:07:39 [INFO] --------------------------- +2021-11-19 07:07:39 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:07:40 [INFO] - File:[datetime.go] was linted with [jscpd] successfully +2021-11-19 07:07:40 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 31.755ms +------ +2021-11-19 07:07:40 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:07: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 07:07: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: jscpd +2021-11-19 07:07:41 [INFO] --------------------------- +2021-11-19 07:07:41 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:07:42 [INFO] - File:[dummy.go] was linted with [jscpd] successfully +2021-11-19 07:07:42 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.7ms +------ +2021-11-19 07:07:42 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:07: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 07:07: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: jscpd +2021-11-19 07:07:42 [INFO] --------------------------- +2021-11-19 07:07:42 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:07:43 [INFO] - File:[entity.go] was linted with [jscpd] successfully +2021-11-19 07:07:43 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.422ms +------ +2021-11-19 07:07:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:07: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 07:07: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: jscpd +2021-11-19 07:07:43 [INFO] --------------------------- +2021-11-19 07:07:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:07:44 [INFO] - File:[entitywithtimestamps.go] was linted with [jscpd] successfully +2021-11-19 07:07:44 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 37.087ms +------ +2021-11-19 07:07:44 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:07:44 [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 07:07:44 [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: jscpd +2021-11-19 07:07:44 [INFO] --------------------------- +2021-11-19 07:07:44 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:07:46 [INFO] - File:[entitywithversions.go] was linted with [jscpd] successfully +2021-11-19 07:07:46 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.122ms +------ +2021-11-19 07:07:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:07: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 07:07:46 [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: jscpd +2021-11-19 07:07:46 [INFO] --------------------------- +2021-11-19 07:07:46 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:07:47 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:47 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 38.278ms +------ +2021-11-19 07:07:47 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:07: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 07:07: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: jscpd +2021-11-19 07:07:47 [INFO] --------------------------- +2021-11-19 07:07:47 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:07:48 [INFO] - File:[dummy.go] was linted with [jscpd] successfully +2021-11-19 07:07:48 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 39.902ms +------ +2021-11-19 07:07:48 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:07:48 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:48 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:48 [INFO] --------------------------- +2021-11-19 07:07:48 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:07:49 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:49 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.221ms +------ +2021-11-19 07:07:49 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:07:49 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:07:49 [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: jscpd +2021-11-19 07:07:49 [INFO] --------------------------- +2021-11-19 07:07:49 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:07:51 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:51 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 57.631ms +------ +2021-11-19 07:07:51 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:07: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 07:07:51 [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: jscpd +2021-11-19 07:07:51 [INFO] --------------------------- +2021-11-19 07:07:51 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:07:52 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:52 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 48.13ms +------ +2021-11-19 07:07:52 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:07: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 07:07:52 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:52 [INFO] --------------------------- +2021-11-19 07:07:52 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:07:53 [INFO] - File:[main.go] was linted with [jscpd] successfully +2021-11-19 07:07:53 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.982ms +------ +2021-11-19 07:07:53 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 07:07:53 [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 07:07:53 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:53 [INFO] --------------------------- +2021-11-19 07:07:53 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 07:07:54 [INFO] - File:[go.mod] was linted with [jscpd] successfully +2021-11-19 07:07:54 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 1.319ms +------ +2021-11-19 07:07:54 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 07:07: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 07:07:54 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:54 [INFO] --------------------------- +2021-11-19 07:07:54 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 07:07:55 [INFO] - File:[go.sum] was linted with [jscpd] successfully +2021-11-19 07:07:55 [DEBUG] Error code: 0. Command output: +------ +Detection time:: 0.769ms +------ +2021-11-19 07:07:55 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:07: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 07:07:55 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:55 [INFO] --------------------------- +2021-11-19 07:07:55 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:07:56 [INFO] - File:[jwt.go] was linted with [jscpd] successfully +2021-11-19 07:07:56 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 45.186ms +------ +2021-11-19 07:07:56 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:07:56 [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 07:07:56 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:56 [INFO] --------------------------- +2021-11-19 07:07:56 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:07:57 [INFO] - File:[jwtclaims.go] was linted with [jscpd] successfully +2021-11-19 07:07:57 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.945ms +------ +2021-11-19 07:07:57 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:07:57 [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 07:07:57 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:57 [INFO] --------------------------- +2021-11-19 07:07:58 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:07:59 [INFO] - File:[jwtkey.go] was linted with [jscpd] successfully +2021-11-19 07:07:59 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 55.813ms +------ +2021-11-19 07:07:59 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:07:59 [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 07:07:59 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:07:59 [INFO] --------------------------- +2021-11-19 07:07:59 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:08:00 [INFO] - File:[keyfunc.go] was linted with [jscpd] successfully +2021-11-19 07:08:00 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 37.903ms +------ +2021-11-19 07:08:00 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:08: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 07:08:00 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:00 [INFO] --------------------------- +2021-11-19 07:08:00 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:08:01 [INFO] - File:[ldflags.go] was linted with [jscpd] successfully +2021-11-19 07:08:01 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 25.387ms +------ +2021-11-19 07:08:01 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:08: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 07:08:01 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:01 [INFO] --------------------------- +2021-11-19 07:08:01 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:08:02 [INFO] - File:[configure.go] was linted with [jscpd] successfully +2021-11-19 07:08:02 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.01ms +------ +2021-11-19 07:08:02 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:08:02 [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 07:08:02 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:02 [INFO] --------------------------- +2021-11-19 07:08:02 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:08:03 [INFO] - File:[fields.go] was linted with [jscpd] successfully +2021-11-19 07:08:03 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.489ms +------ +2021-11-19 07:08:03 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07:08:03 [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 07:08:03 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:03 [INFO] --------------------------- +2021-11-19 07:08:03 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:08:04 [INFO] - File:[fields_error.go] was linted with [jscpd] successfully +2021-11-19 07:08:04 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 31.576ms +------ +2021-11-19 07:08:04 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:08:04 [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 07:08:04 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:04 [INFO] --------------------------- +2021-11-19 07:08:04 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:08:05 [INFO] - File:[fields_http.go] was linted with [jscpd] successfully +2021-11-19 07:08:06 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 48.548ms +------ +2021-11-19 07:08:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:06 [INFO] --------------------------- +2021-11-19 07:08:06 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:08:07 [INFO] - File:[fields_messaging.go] was linted with [jscpd] successfully +2021-11-19 07:08:07 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 44.409ms +------ +2021-11-19 07:08:07 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:08:07 [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 07:08:07 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:07 [INFO] --------------------------- +2021-11-19 07:08:07 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:08:08 [INFO] - File:[fields_net.go] was linted with [jscpd] successfully +2021-11-19 07:08:08 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.5ms +------ +2021-11-19 07:08:08 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:08:08 [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 07:08:08 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:08 [INFO] --------------------------- +2021-11-19 07:08:08 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:08:09 [INFO] - File:[fields_service.go] was linted with [jscpd] successfully +2021-11-19 07:08:09 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 36.051ms +------ +2021-11-19 07:08:09 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:08:09 [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 07:08:09 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:09 [INFO] --------------------------- +2021-11-19 07:08:09 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:08:10 [INFO] - File:[fields_trace.go] was linted with [jscpd] successfully +2021-11-19 07:08:10 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 27.883ms +------ +2021-11-19 07:08:10 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:08:10 [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 07:08:11 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:11 [INFO] --------------------------- +2021-11-19 07:08:11 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:08:12 [INFO] - File:[log.go] was linted with [jscpd] successfully +2021-11-19 07:08:12 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 66.883ms +------ +2021-11-19 07:08:12 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:08: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 07:08:12 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:12 [INFO] --------------------------- +2021-11-19 07:08:12 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:08:13 [INFO] - File:[with.go] was linted with [jscpd] successfully +2021-11-19 07:08:13 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 68.272ms +------ +2021-11-19 07:08:13 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:08:13 [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 07:08:13 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:13 [INFO] --------------------------- +2021-11-19 07:08:13 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:08:14 [INFO] - File:[metrics.go] was linted with [jscpd] successfully +2021-11-19 07:08:14 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.349ms +------ +2021-11-19 07:08:14 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:08:14 [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 07:08:14 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:14 [INFO] --------------------------- +2021-11-19 07:08:14 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:08:15 [INFO] - File:[metrics_http.go] was linted with [jscpd] successfully +2021-11-19 07:08:15 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 31.89ms +------ +2021-11-19 07:08:15 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:08:15 [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 07:08:15 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:15 [INFO] --------------------------- +2021-11-19 07:08:15 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:08:17 [INFO] - File:[decode.go] was linted with [jscpd] successfully +2021-11-19 07:08:17 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.82ms +------ +2021-11-19 07:08:17 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:08: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 07:08:17 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:17 [INFO] --------------------------- +2021-11-19 07:08:17 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:08:18 [INFO] - File:[errors.go] was linted with [jscpd] successfully +2021-11-19 07:08:18 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.538ms +------ +2021-11-19 07:08:18 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:08:18 [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 07:08:18 [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: jscpd +2021-11-19 07:08:18 [INFO] --------------------------- +2021-11-19 07:08:18 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:08:19 [INFO] - File:[cookie.go] was linted with [jscpd] successfully +2021-11-19 07:08:19 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 67.857ms +------ +2021-11-19 07:08:19 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:08:19 [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 07:08:19 [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: jscpd +2021-11-19 07:08:19 [INFO] --------------------------- +2021-11-19 07:08:19 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:08:20 [INFO] - File:[domainprovider.go] was linted with [jscpd] successfully +2021-11-19 07:08:20 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 47.949ms +------ +2021-11-19 07:08:20 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:08:20 [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 07:08:20 [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: jscpd +2021-11-19 07:08:20 [INFO] --------------------------- +2021-11-19 07:08:20 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:08:21 [INFO] - File:[timeprovider.go] was linted with [jscpd] successfully +2021-11-19 07:08:21 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.569ms +------ +2021-11-19 07:08:21 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:08:21 [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 07:08:21 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:22 [INFO] --------------------------- +2021-11-19 07:08:22 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:08:23 [INFO] - File:[header.go] was linted with [jscpd] successfully +2021-11-19 07:08:23 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 37.427ms +------ +2021-11-19 07:08:23 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:08:23 [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 07:08:23 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:23 [INFO] --------------------------- +2021-11-19 07:08:23 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:08:24 [INFO] - File:[headervalues.go] was linted with [jscpd] successfully +2021-11-19 07:08:24 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 24.723ms +------ +2021-11-19 07:08:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:08:24 [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 07:08:24 [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: jscpd +2021-11-19 07:08:24 [INFO] --------------------------- +2021-11-19 07:08:24 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:08:25 [INFO] - File:[basicauth.go] was linted with [jscpd] successfully +2021-11-19 07:08:25 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 58.691ms +------ +2021-11-19 07:08:25 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:08:25 [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 07:08:25 [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: jscpd +2021-11-19 07:08:25 [INFO] --------------------------- +2021-11-19 07:08:25 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:08:26 [INFO] - File:[cookietokenprovider.go] was linted with [jscpd] successfully +2021-11-19 07:08:26 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 36.856ms +------ +2021-11-19 07:08:26 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:08:26 [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 07:08:26 [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: jscpd +2021-11-19 07:08:26 [INFO] --------------------------- +2021-11-19 07:08:26 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:08:28 [INFO] - File:[cors.go] was linted with [jscpd] successfully +2021-11-19 07:08:28 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 126.822ms +------ +2021-11-19 07:08:28 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:08:28 [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 07:08:28 [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: jscpd +2021-11-19 07:08:28 [INFO] --------------------------- +2021-11-19 07:08:28 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:08:29 [INFO] - File:[headertokenprovider.go] was linted with [jscpd] successfully +2021-11-19 07:08:29 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 45.072ms +------ +2021-11-19 07:08:29 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:08:29 [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 07:08:29 [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: jscpd +2021-11-19 07:08:29 [INFO] --------------------------- +2021-11-19 07:08:29 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:08:30 [INFO] - File:[jwt.go] was linted with [jscpd] successfully +2021-11-19 07:08:30 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 84.798ms +------ +2021-11-19 07:08:30 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:08:30 [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 07:08:30 [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: jscpd +2021-11-19 07:08:30 [INFO] --------------------------- +2021-11-19 07:08:30 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:08:32 [INFO] - File:[logger.go] was linted with [jscpd] successfully +2021-11-19 07:08:32 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 49.184ms +------ +2021-11-19 07:08:32 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:08:32 [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 07:08:32 [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: jscpd +2021-11-19 07:08:32 [INFO] --------------------------- +2021-11-19 07:08:32 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:08:33 [INFO] - File:[middleware.go] was linted with [jscpd] successfully +2021-11-19 07:08:33 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.877ms +------ +2021-11-19 07:08:33 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:08:33 [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 07:08:33 [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: jscpd +2021-11-19 07:08:33 [INFO] --------------------------- +2021-11-19 07:08:33 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:08:34 [INFO] - File:[poweredbyheader.go] was linted with [jscpd] successfully +2021-11-19 07:08:34 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 36.022ms +------ +2021-11-19 07:08:34 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:08:34 [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 07:08:34 [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: jscpd +2021-11-19 07:08:34 [INFO] --------------------------- +2021-11-19 07:08:34 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:08:35 [INFO] - File:[recover.go] was linted with [jscpd] successfully +2021-11-19 07:08:35 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 41.666ms +------ +2021-11-19 07:08:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:35 [INFO] --------------------------- +2021-11-19 07:08:35 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:08:36 [INFO] - File:[requestid.go] was linted with [jscpd] successfully +2021-11-19 07:08:36 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 54.121ms +------ +2021-11-19 07:08:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:37 [INFO] --------------------------- +2021-11-19 07:08:37 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:08:38 [INFO] - File:[requesturiblacklistskipper.go] was linted with [jscpd] successfully +2021-11-19 07:08:38 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 37.496ms +------ +2021-11-19 07:08:38 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:08:38 [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 07:08:38 [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: jscpd +2021-11-19 07:08:38 [INFO] --------------------------- +2021-11-19 07:08:38 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:08:39 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [jscpd] successfully +2021-11-19 07:08:39 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.463ms +------ +2021-11-19 07:08:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:08:39 [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 07:08:39 [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: jscpd +2021-11-19 07:08:39 [INFO] --------------------------- +2021-11-19 07:08:39 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:08:40 [INFO] - File:[responsetime.go] was linted with [jscpd] successfully +2021-11-19 07:08:40 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.582ms +------ +2021-11-19 07:08:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:40 [INFO] --------------------------- +2021-11-19 07:08:40 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:08:41 [INFO] - File:[responsewriter.go] was linted with [jscpd] successfully +2021-11-19 07:08:41 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 60.43ms +------ +2021-11-19 07:08:41 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:08:42 [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 07:08:42 [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: jscpd +2021-11-19 07:08:42 [INFO] --------------------------- +2021-11-19 07:08:42 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:08:43 [INFO] - File:[serverheader.go] was linted with [jscpd] successfully +2021-11-19 07:08:43 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 46.535ms +------ +2021-11-19 07:08:43 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:08:43 [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 07:08:43 [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: jscpd +2021-11-19 07:08:43 [INFO] --------------------------- +2021-11-19 07:08:43 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:08:44 [INFO] - File:[sessionid.go] was linted with [jscpd] successfully +2021-11-19 07:08:44 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 66.605ms +------ +2021-11-19 07:08:44 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:08:44 [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 07:08:44 [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: jscpd +2021-11-19 07:08:44 [INFO] --------------------------- +2021-11-19 07:08:44 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:08:45 [INFO] - File:[skip.go] was linted with [jscpd] successfully +2021-11-19 07:08:45 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 31.015ms +------ +2021-11-19 07:08:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:08:45 [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 07:08:45 [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: jscpd +2021-11-19 07:08:45 [INFO] --------------------------- +2021-11-19 07:08:45 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:08:46 [INFO] - File:[skipper.go] was linted with [jscpd] successfully +2021-11-19 07:08:46 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 27.105ms +------ +2021-11-19 07:08:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:46 [INFO] --------------------------- +2021-11-19 07:08:46 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:08:48 [INFO] - File:[telemetry.go] was linted with [jscpd] successfully +2021-11-19 07:08:48 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.691ms +------ +2021-11-19 07:08:48 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:48 [INFO] --------------------------- +2021-11-19 07:08:48 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:08:49 [INFO] - File:[tokenauth.go] was linted with [jscpd] successfully +2021-11-19 07:08:49 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 46.285ms +------ +2021-11-19 07:08:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:08:49 [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 07:08:49 [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: jscpd +2021-11-19 07:08:49 [INFO] --------------------------- +2021-11-19 07:08:49 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:08:50 [INFO] - File:[tokenprovider.go] was linted with [jscpd] successfully +2021-11-19 07:08:50 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 22.42ms +------ +2021-11-19 07:08:50 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:08:50 [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 07:08:50 [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: jscpd +2021-11-19 07:08:50 [INFO] --------------------------- +2021-11-19 07:08:50 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:08:51 [INFO] - File:[publisher.go] was linted with [jscpd] successfully +2021-11-19 07:08:51 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 54.167ms +------ +2021-11-19 07:08:51 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:51 [INFO] --------------------------- +2021-11-19 07:08:51 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:08:52 [INFO] - File:[stream.go] was linted with [jscpd] successfully +2021-11-19 07:08:52 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 121.503ms +------ +2021-11-19 07:08:52 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:08:52 [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 07:08:52 [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: jscpd +2021-11-19 07:08:52 [INFO] --------------------------- +2021-11-19 07:08:52 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:08:54 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:08:54 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:08:54 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + + 48 │ 39 │ , func(msg *nats.Msg) { + 49 │ 40 │  ctx := context.Background() + 50 │ 41 │  if err := handler(ctx, s.stream.l, msg); err != nil { + 51 │ 42 │  s.errorHandler(err) + 52 │ 43 │  } + 53 │ 44 │  }, s.SubOpts(opts...)...) + 54 │ 45 │ } + 55 │ 46 │ + 56 │ 47 │ func (s *Subscriber) Unmarshal + +Found 1 clones. +ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:08:54 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + +Clone found (go): + - /tmp/lint/net/stream/jetstream/subscriber.go [48:6 - 56:10] (8 lines, 93 tokens) + /tmp/lint/net/stream/jetstream/subscriber.go [39:2 - 47:15] + + 48 │ 39 │ , func(msg *nats.Msg) { + 49 │ 40 │  ctx := context.Background() + 50 │ 41 │  if err := handler(ctx, s.stream.l, msg); err != nil { + 51 │ 42 │  s.errorHandler(err) + 52 │ 43 │  } + 53 │ 44 │  }, s.SubOpts(opts...)...) + 54 │ 45 │ } + 55 │ 46 │ + 56 │ 47 │ func (s *Subscriber) Unmarshal + +Found 1 clones. +ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (13.11%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:08:54 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:08:54 [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 07:08:54 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:54 [INFO] --------------------------- +2021-11-19 07:08:54 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:08:55 [INFO] - File:[middleware.go] was linted with [jscpd] successfully +2021-11-19 07:08:55 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 31.828ms +------ +2021-11-19 07:08:55 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:08: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 07:08:55 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:55 [INFO] --------------------------- +2021-11-19 07:08:55 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:08:56 [INFO] - File:[option.go] was linted with [jscpd] successfully +2021-11-19 07:08:56 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 46.894ms +------ +2021-11-19 07:08:56 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:08:56 [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 07:08:56 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:08:56 [INFO] --------------------------- +2021-11-19 07:08:56 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:08:58 [INFO] - File:[error.go] was linted with [jscpd] successfully +2021-11-19 07:08:58 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 27.04ms +------ +2021-11-19 07:08:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:58 [INFO] --------------------------- +2021-11-19 07:08:58 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:08:59 [INFO] - File:[collection.go] was linted with [jscpd] successfully +2021-11-19 07:08:59 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 194.876ms +------ +2021-11-19 07:08:59 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:08: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 07:08: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: jscpd +2021-11-19 07:08:59 [INFO] --------------------------- +2021-11-19 07:08:59 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:09:00 [INFO] - File:[entity.go] was linted with [jscpd] successfully +2021-11-19 07:09:00 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 32.528ms +------ +2021-11-19 07:09:00 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:09:00 [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 07:09:00 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:00 [INFO] --------------------------- +2021-11-19 07:09:00 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:09:02 [INFO] - File:[persistor.go] was linted with [jscpd] successfully +2021-11-19 07:09:02 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 76.735ms +------ +2021-11-19 07:09:02 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:09:02 [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 07:09:02 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:02 [INFO] --------------------------- +2021-11-19 07:09:02 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:09:03 [INFO] - File:[utils.go] was linted with [jscpd] successfully +2021-11-19 07:09:03 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 25.822ms +------ +2021-11-19 07:09:03 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:09:03 [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 07:09:03 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:03 [INFO] --------------------------- +2021-11-19 07:09:03 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:09:04 [INFO] - File:[persistor.go] was linted with [jscpd] successfully +2021-11-19 07:09:04 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 59.748ms +------ +2021-11-19 07:09:04 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:09: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 07:09:04 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:04 [INFO] --------------------------- +2021-11-19 07:09:04 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:09:05 [INFO] - File:[server.go] was linted with [jscpd] successfully +2021-11-19 07:09:05 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 88.535ms +------ +2021-11-19 07:09:05 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:09:05 [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 07:09:05 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:05 [INFO] --------------------------- +2021-11-19 07:09:05 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:09:07 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:09:07 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:09:07 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + + 117 │ 104 │ ) + 118 │ 105 │  } + 119 │ 106 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/info"); s.NoError(err) { + 120 │ 107 │  s.Equal(http.StatusOK, statusCode) + 121 │ 108 │  } + 122 │ 109 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/debug"); s.NoError(err) { + 123 │ 110 │  s.Equal(http.StatusOK, statusCode) + 124 │ 111 │  } + 125 │ 112 │  }) + 126 │ 113 │ + 127 │ 114 │  s.Run("enable caller" + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + + 148 │ 73 │ () { + 149 │ 74 │  if os.Getenv("CI") != "" { + 150 │ 75 │  s.T().Skip() + 151 │ 76 │  } + 152 │ 77 │ + 153 │ 78 │  s.svr.AddServices( + 154 │ 79 │  keel.NewServiceHTTP(log.Logger(), "test", ":55000", s.mux), + 155 │ 80 │  ) + 156 │ 81 │ + 157 │ 82 │  go s.svr.Run() + 158 │ 83 │ + 159 │ 84 │  if statusCode, _, err := s.httpGet("http://localhost:55000/ok"); s.NoError(err) { + 160 │ 85 │  s.l + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + + 202 │ 187 │ ); err != nil { + 203 │ 188 │  return 0, "", err + 204 │ 189 │  } else if resp, err := http.DefaultClient.Do(req); err != nil { + 205 │ 190 │  return 0, "", err + 206 │ 191 │  } else if body, err := ioutil.ReadAll(resp.Body); err != nil { + 207 │ 192 │  return 0, "", err + 208 │ 193 │  } else if err := resp.Body.Close(); err != nil { + 209 │ 194 │  return 0, "", err + 210 │ 195 │  } else { + 211 │ 196 │  return resp.StatusCode, string(bytes.TrimSpace(body)), nil + 212 │ 197 │  } + 213 │ 198 │ } + 214 │ 199 │ + 215 │ 200 │ // In order for 'go test' to run this suite, we need to create + +Found 3 clones. +ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:07 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + +Clone found (go): + - /tmp/lint/server_test.go [117:66 - 127:16] (10 lines, 107 tokens) + /tmp/lint/server_test.go [104:65 - 114:18] + + 117 │ 104 │ ) + 118 │ 105 │  } + 119 │ 106 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/info"); s.NoError(err) { + 120 │ 107 │  s.Equal(http.StatusOK, statusCode) + 121 │ 108 │  } + 122 │ 109 │  if statusCode, _, err := s.httpGet("http://localhost:55000/log/debug"); s.NoError(err) { + 123 │ 110 │  s.Equal(http.StatusOK, statusCode) + 124 │ 111 │  } + 125 │ 112 │  }) + 126 │ 113 │ + 127 │ 114 │  s.Run("enable caller" + +Clone found (go): + - /tmp/lint/server_test.go [148:13 - 160:2] (12 lines, 117 tokens) + /tmp/lint/server_test.go [73:16 - 85:6] + + 148 │ 73 │ () { + 149 │ 74 │  if os.Getenv("CI") != "" { + 150 │ 75 │  s.T().Skip() + 151 │ 76 │  } + 152 │ 77 │ + 153 │ 78 │  s.svr.AddServices( + 154 │ 79 │  keel.NewServiceHTTP(log.Logger(), "test", ":55000", s.mux), + 155 │ 80 │  ) + 156 │ 81 │ + 157 │ 82 │  go s.svr.Run() + 158 │ 83 │ + 159 │ 84 │  if statusCode, _, err := s.httpGet("http://localhost:55000/ok"); s.NoError(err) { + 160 │ 85 │  s.l + +Clone found (go): + - /tmp/lint/server_test.go [202:2 - 215:63] (13 lines, 181 tokens) + /tmp/lint/server_test.go [187:4 - 200:18] + + 202 │ 187 │ ); err != nil { + 203 │ 188 │  return 0, "", err + 204 │ 189 │  } else if resp, err := http.DefaultClient.Do(req); err != nil { + 205 │ 190 │  return 0, "", err + 206 │ 191 │  } else if body, err := ioutil.ReadAll(resp.Body); err != nil { + 207 │ 192 │  return 0, "", err + 208 │ 193 │  } else if err := resp.Body.Close(); err != nil { + 209 │ 194 │  return 0, "", err + 210 │ 195 │  } else { + 211 │ 196 │  return resp.StatusCode, string(bytes.TrimSpace(body)), nil + 212 │ 197 │  } + 213 │ 198 │ } + 214 │ 199 │ + 215 │ 200 │ // In order for 'go test' to run this suite, we need to create + +Found 3 clones. +ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (16.06%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:07 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:09:07 [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 07:09:07 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:07 [INFO] --------------------------- +2021-11-19 07:09:07 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:09:08 [INFO] - File:[service.go] was linted with [jscpd] successfully +2021-11-19 07:09:08 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 25.229ms +------ +2021-11-19 07:09:08 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:09:08 [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 07:09:08 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:08 [INFO] --------------------------- +2021-11-19 07:09:08 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:09:09 [INFO] - File:[servicehttp.go] was linted with [jscpd] successfully +2021-11-19 07:09:09 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 42.59ms +------ +2021-11-19 07:09:09 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:09: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 07:09:09 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:09 [INFO] --------------------------- +2021-11-19 07:09:09 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:09:10 [INFO] - File:[servicehttpprometheus.go] was linted with [jscpd] successfully +2021-11-19 07:09:10 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 34.101ms +------ +2021-11-19 07:09:10 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:09: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 07:09:10 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:10 [INFO] --------------------------- +2021-11-19 07:09:10 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:09:11 [INFO] - File:[servicehttpviper.go] was linted with [jscpd] successfully +2021-11-19 07:09:11 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 57.795ms +------ +2021-11-19 07:09:11 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:09:11 [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 07:09:11 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:11 [INFO] --------------------------- +2021-11-19 07:09:11 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:09:13 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:09:13 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:09:13 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + + 79 │ 36 │ current := log.AtomicLevel().Level() + 80 │ 37 │  disableCaller := log.IsDisableCaller() + 81 │ 38 │  disableStacktrace := log.IsDisableStacktrace() + 82 │ 39 │  _ = enc.Encode(payload{ + 83 │ 40 │  Level: ¤t, + 84 │ 41 │  DisableCaller: &disableCaller, + 85 │ 42 │  DisableStacktrace: &disableStacktrace, + 86 │ 43 │  }) + 87 │ 44 │  default + +Found 1 clones. +ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:13 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + +Clone found (go): + - /tmp/lint/servicehttpzap.go [79:4 - 87:8] (8 lines, 77 tokens) + /tmp/lint/servicehttpzap.go [36:4 - 45:5] + + 79 │ 36 │ current := log.AtomicLevel().Level() + 80 │ 37 │  disableCaller := log.IsDisableCaller() + 81 │ 38 │  disableStacktrace := log.IsDisableStacktrace() + 82 │ 39 │  _ = enc.Encode(payload{ + 83 │ 40 │  Level: ¤t, + 84 │ 41 │  DisableCaller: &disableCaller, + 85 │ 42 │  DisableStacktrace: &disableStacktrace, + 86 │ 43 │  }) + 87 │ 44 │  default + +Found 1 clones. +ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (7.77%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:13 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:09:13 [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 07:09:13 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:13 [INFO] --------------------------- +2021-11-19 07:09:13 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:09:14 [INFO] - File:[error.go] was linted with [jscpd] successfully +2021-11-19 07:09:14 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.852ms +------ +2021-11-19 07:09:14 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:09:14 [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 07:09:14 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:14 [INFO] --------------------------- +2021-11-19 07:09:14 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:09:15 [INFO] - File:[meter.go] was linted with [jscpd] successfully +2021-11-19 07:09:15 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 27.33ms +------ +2021-11-19 07:09:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:09: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 07:09:15 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:15 [INFO] --------------------------- +2021-11-19 07:09:15 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:09:16 [INFO] - File:[span.go] was linted with [jscpd] successfully +2021-11-19 07:09:16 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 33.459ms +------ +2021-11-19 07:09:16 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:09: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 07:09:17 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:17 [INFO] --------------------------- +2021-11-19 07:09:17 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:09:18 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:09:18 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:09:18 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + + 170 │ 127 │ ) + 171 │ 128 │  if err != nil { + 172 │ 129 │  return nil, nil, nil, err + 173 │ 130 │  } + 174 │ 131 │ + 175 │ 132 │  tracerProvider := sdktrace.NewTracerProvider( + 176 │ 133 │  sdktrace.WithBatcher(exporter), + 177 │ 134 │  sdktrace.WithResource(resource), + 178 │ 135 │  sdktrace.WithSampler(sdktrace.AlwaysSample()), + 179 │ 136 │  ) + 180 │ 137 │ + 181 │ 138 │  controller := otelcontroller.New( + 182 │ 139 │  otelprocessor.New( + 183 │ 140 │  otelsimple.NewWithInexpensiveDistribution(), + 184 │ 141 │  exporter, + 185 │ 142 │  ), + 186 │ 143 │  otelcontroller.WithResource + +Found 1 clones. +ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:18 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + +Clone found (go): + - /tmp/lint/telemetry/telemetry.go [170:7 - 186:13] (16 lines, 111 tokens) + /tmp/lint/telemetry/telemetry.go [127:4 - 143:13] + + 170 │ 127 │ ) + 171 │ 128 │  if err != nil { + 172 │ 129 │  return nil, nil, nil, err + 173 │ 130 │  } + 174 │ 131 │ + 175 │ 132 │  tracerProvider := sdktrace.NewTracerProvider( + 176 │ 133 │  sdktrace.WithBatcher(exporter), + 177 │ 134 │  sdktrace.WithResource(resource), + 178 │ 135 │  sdktrace.WithSampler(sdktrace.AlwaysSample()), + 179 │ 136 │  ) + 180 │ 137 │ + 181 │ 138 │  controller := otelcontroller.New( + 182 │ 139 │  otelprocessor.New( + 183 │ 140 │  otelsimple.NewWithInexpensiveDistribution(), + 184 │ 141 │  exporter, + 185 │ 142 │  ), + 186 │ 143 │  otelcontroller.WithResource + +Found 1 clones. +ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (8.16%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:18 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:09:18 [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 07:09:18 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:18 [INFO] --------------------------- +2021-11-19 07:09:18 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:09:19 [DEBUG] Found errors. Error code: 1, File type: JSCPD, Error on missing exec bit: false +2021-11-19 07:09:19 [ERROR] Found errors in [jscpd] linter! +2021-11-19 07:09:19 [ERROR] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + + 67 │ 48 │ if resp, err := c.Client.Do(req); err != nil { + 68 │ 49 │  return nil, 0, err + 69 │ 50 │  } else if body, err := c.readBody(resp); err != nil { + 70 │ 51 │  return nil, 0, err + 71 │ 52 │  } else { + 72 │ 53 │  return body, resp.StatusCode, nil + 73 │ 54 │  } + 74 │ 55 │ } + 75 │ 56 │ + 76 │ 57 │ func (c *HTTPClient) readBody + +Found 1 clones. +ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:19 [DEBUG] Error code: 1. Command output: +------ +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + +Clone found (go): + - /tmp/lint/test/client.go [67:2 - 76:9] (9 lines, 114 tokens) + /tmp/lint/test/client.go [48:2 - 57:5] + + 67 │ 48 │ if resp, err := c.Client.Do(req); err != nil { + 68 │ 49 │  return nil, 0, err + 69 │ 50 │  } else if body, err := c.readBody(resp); err != nil { + 70 │ 51 │  return nil, 0, err + 71 │ 52 │  } else { + 72 │ 53 │  return body, resp.StatusCode, nil + 73 │ 54 │  } + 74 │ 55 │ } + 75 │ 56 │ + 76 │ 57 │ func (c *HTTPClient) readBody + +Found 1 clones. +ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) +Error: ERROR: jscpd found too many duplicates (10.98%) over threshold (0%) + at ThresholdReporter.report (/node_modules/@jscpd/finder/dist/reporters/threshold.js:12:19) + at /node_modules/@jscpd/finder/dist/in-files-detector.js:82:26 + at Array.forEach () + at /node_modules/@jscpd/finder/dist/in-files-detector.js:81:28 +------ +2021-11-19 07:09:19 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:09:19 [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 07:09:19 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:19 [INFO] --------------------------- +2021-11-19 07:09:19 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:09:20 [INFO] - File:[log.go] was linted with [jscpd] successfully +2021-11-19 07:09:20 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 30.139ms +------ +2021-11-19 07:09:20 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:09: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 07:09:20 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:20 [INFO] --------------------------- +2021-11-19 07:09:20 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:09:22 [INFO] - File:[option.go] was linted with [jscpd] successfully +2021-11-19 07:09:22 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 35.378ms +------ +2021-11-19 07:09:22 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:09:22 [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 07:09:22 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:22 [INFO] --------------------------- +2021-11-19 07:09:22 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:09:23 [INFO] - File:[server.go] was linted with [jscpd] successfully +2021-11-19 07:09:23 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 49.102ms +------ +2021-11-19 07:09:23 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:09:23 [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 07:09:23 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:23 [INFO] --------------------------- +2021-11-19 07:09:23 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:09:24 [INFO] - File:[service.go] was linted with [jscpd] successfully +2021-11-19 07:09:24 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.599ms +------ +2021-11-19 07:09:24 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:09:24 [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 07:09:24 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: jscpd +2021-11-19 07:09:24 [INFO] --------------------------- +2021-11-19 07:09:24 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:09:25 [INFO] - File:[servicehttp.go] was linted with [jscpd] successfully +2021-11-19 07:09:25 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 56.187ms +------ +2021-11-19 07:09:25 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:09:25 [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 07:09:25 [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: jscpd +2021-11-19 07:09:25 [INFO] --------------------------- +2021-11-19 07:09:25 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:09:27 [INFO] - File:[basicauth.go] was linted with [jscpd] successfully +2021-11-19 07:09:27 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.377ms +------ +2021-11-19 07:09:27 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:09:27 [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 07:09:27 [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: jscpd +2021-11-19 07:09:27 [INFO] --------------------------- +2021-11-19 07:09:27 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:09:28 [INFO] - File:[errors.go] was linted with [jscpd] successfully +2021-11-19 07:09:28 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 46.722ms +------ +2021-11-19 07:09:28 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:09:28 [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 07:09:28 [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: jscpd +2021-11-19 07:09:28 [INFO] --------------------------- +2021-11-19 07:09:28 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:09:29 [INFO] - File:[request.go] was linted with [jscpd] successfully +2021-11-19 07:09:29 [DEBUG] Error code: 0. Command output: +------ +Found 0 clones. +Detection time:: 29.586ms +------ +2021-11-19 07:09:29 [DEBUG] Running linter for the JSON language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 07:09:29 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:29 [DEBUG] Running linter for the JSONC language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 07:09:29 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:29 [DEBUG] Running linter for the JSX language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 07:09:29 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:29 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 07:09:29 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:29 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 07:09:29 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:29 [DEBUG] Running linter for the LATEX language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 07:09:29 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:29 [DEBUG] Running linter for the LUA language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 07:09:29 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:29 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 07:09:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 07:09:29 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 07:09:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 07:09:29 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 07:09:29 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 07:09:29 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 07:09:29 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:09:29 [INFO]  +2021-11-19 07:09:29 [INFO] ---------------------------------------------- +2021-11-19 07:09:29 [INFO] ---------------------------------------------- +2021-11-19 07:09:29 [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 07:09:29 [INFO] Linting [MARKDOWN] files... +2021-11-19 07:09:29 [INFO] ---------------------------------------------- +2021-11-19 07:09:29 [INFO] ---------------------------------------------- +2021-11-19 07:09:29 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:09: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 07:09:30 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 07:09:30 [INFO] --------------------------- +2021-11-19 07:09:30 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:09:30 [DEBUG] Found errors. Error code: 1, File type: MARKDOWN, Error on missing exec bit: false +2021-11-19 07:09:30 [ERROR] Found errors in [markdownlint] linter! +2021-11-19 07:09:30 [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 07:09:30 [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 07:09:30 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 07:09:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 07:09:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:30 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 07:09:30 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 07:09:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 07:09:30 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 07:09:30 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 07:09:30 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 07:09:30 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:09:30 [INFO]  +2021-11-19 07:09:30 [INFO] ---------------------------------------------- +2021-11-19 07:09:30 [INFO] ---------------------------------------------- +2021-11-19 07:09:30 [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 07:09:30 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 07:09:30 [INFO] ---------------------------------------------- +2021-11-19 07:09:30 [INFO] ---------------------------------------------- +2021-11-19 07:09:30 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:09: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 07:09:30 [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 07:09:30 [INFO] --------------------------- +2021-11-19 07:09:30 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:09:31 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 07:09:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:09:31 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 07:09:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 07:09:31 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 07:09:31 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 07:09:31 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 07:09:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:31 [DEBUG] Running linter for the PERL language... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 07:09:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 07:09:31 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 07:09:31 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 07:09:31 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 07:09:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:31 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 07:09:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 07:09:31 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 07:09:31 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 07:09:31 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 07:09:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:31 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 07:09:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 07:09:31 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 07:09:31 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 07:09:31 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 07:09:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:31 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 07:09:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 07:09:31 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 07:09:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 07:09:31 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 07:09:31 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 07:09:31 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 07:09:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:31 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the R language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the RAKU language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the RUBY language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to shfmt... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to shfmt -d... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SHELL_SHFMT... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_SHELL_SHFMT file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking shfmt linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[SHELL_SHFMT] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 07:09:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 07:09:32 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 07:09:32 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 07:09:32 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 07:09:32 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:32 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:09:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 07:09:32 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the STATES language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the SQL language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the TEKTON language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the TSX language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the XML language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 07:09:33 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:09:33 [DEBUG] Running linter for the YAML language... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 07:09:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 07:09:33 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 07:09:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 07:09:33 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.golangci.yml +2021-11-19 07:09:33 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 07:09:33 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.golangci.yml +2021-11-19 07:09:33 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:09:33 [INFO]  +2021-11-19 07:09:33 [INFO] ---------------------------------------------- +2021-11-19 07:09:33 [INFO] ---------------------------------------------- +2021-11-19 07:09:33 [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/.golangci.yml +2021-11-19 07:09:33 [INFO] Linting [YAML] files... +2021-11-19 07:09:33 [INFO] ---------------------------------------------- +2021-11-19 07:09:33 [INFO] ---------------------------------------------- +2021-11-19 07:09:33 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:09:33 [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 07:09:33 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 07:09:33 [INFO] --------------------------- +2021-11-19 07:09:33 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:09:34 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 07:09:34 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 07:09:34 [INFO] ---------------------------------------------- +2021-11-19 07:09:34 [INFO] ---------------------------------------------- +2021-11-19 07:09:34 [INFO] The script has completed +2021-11-19 07:09:34 [INFO] ---------------------------------------------- +2021-11-19 07:09:34 [INFO] ---------------------------------------------- +2021-11-19 07:09:34 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 07:09:34 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 07:09:34 [ERROR] ERRORS FOUND in GO:[109] +2021-11-19 07:09:34 [DEBUG] Calling Multi-Status API for GO with status error +2021-11-19 07:09:34 [ERROR] ERRORS FOUND in JSCPD:[5] +2021-11-19 07:09:34 [DEBUG] Calling Multi-Status API for JSCPD with status error +2021-11-19 07:09:34 [ERROR] ERRORS FOUND in MARKDOWN:[1] +2021-11-19 07:09:34 [DEBUG] Calling Multi-Status API for MARKDOWN with status error +2021-11-19 07:09:34 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 07:09:34 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 07:09:34 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:10:35 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:10:35 [INFO] --------------------------------------------- +2021-11-19 07:10:35 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:10:35 [INFO] - Image Creation Date:[] +2021-11-19 07:10:35 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:10:35 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:10:35 [INFO] --------------------------------------------- +2021-11-19 07:10:35 [INFO] --------------------------------------------- +2021-11-19 07:10:35 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:10:35 [INFO] - https://github.com/github/super-linter +2021-11-19 07:10:35 [INFO] --------------------------------------------- +2021-11-19 07:10:35 [DEBUG] --------------------------------------------- +2021-11-19 07:10:36 [DEBUG] Linter Version Info: +2021-11-19 07:10:36 [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 07:10:36 [DEBUG] --------------------------------------------- +2021-11-19 07:10:36 [INFO] -------------------------------------------- +2021-11-19 07:10:36 [INFO] Gathering GitHub information... +2021-11-19 07:10:36 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:10:36 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:10:36 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:10:36 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:10:36 [INFO] -------------------------------------------- +2021-11-19 07:10:36 [INFO] Gathering user validation information... +2021-11-19 07:10:36 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for ARM linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for BASH linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_BASH variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_BASH variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for CPP linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for CSS linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for DART linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for ENV linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for GO linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for HTML linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for JAVA linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for JSON linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for JSONC linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for JSX linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for LATEX linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for LUA linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PERL linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for R linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for RAKU linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 07:10:36 [DEBUG] Defining variables for RUBY linter... +2021-11-19 07:10:36 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 07:10:36 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for SHELL_SHFMT linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_SHELL_SHFMT variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_SHELL_SHFMT variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for STATES linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for SQL linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for TSX linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for XML linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 07:10:37 [DEBUG] Defining variables for YAML linter... +2021-11-19 07:10:37 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 07:10:37 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 07:10:37 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:10:37 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:10:37 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [BASH] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [DART] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:10:37 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [R] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [SHELL_SHFMT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [XML] files in code base... +2021-11-19 07:10:37 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 07:10:37 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:10:37 [DEBUG] --------------------------------------------- +2021-11-19 07:10:37 [DEBUG] Runner:[root] +2021-11-19 07:10:37 [DEBUG] ENV: +2021-11-19 07:10:37 [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_GO=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=08f2cb55da3d +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.IIuCHBmQUe +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=true +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 07:10:37 [DEBUG] --------------------------------------------- +2021-11-19 07:10:37 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:10:37 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:10:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:37 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:10:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:37 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:10:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:37 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:10:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:10:37 [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 07:10:37 [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 07:10:37 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:10:37 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:10:37 [DEBUG] Loading rules for ARM... +2021-11-19 07:10:37 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:10:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:37 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:10:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:37 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:10:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:37 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:10:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:10:37 [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 07:10:37 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:10:37 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:10:37 [DEBUG] Loading rules for BASH... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:10:38 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:10:38 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:10:38 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:10:38 [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 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:10:38 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:10:38 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:10:38 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for CPP... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:10:38 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:10:38 [DEBUG] Loading rules for CSS... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:10:38 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for DART... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for DART... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:10:38 [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 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:10:38 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:10:38 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:10:38 [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 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:10:38 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:10:38 [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 07:10:38 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:10:38 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:10:38 [DEBUG] Loading rules for ENV... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:10:38 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:10:38 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:10:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:38 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:10:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:38 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:10:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:38 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:10:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:10:39 [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 07:10:39 [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 07:10:39 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:10:39 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:10:39 [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 07:10:39 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:10:39 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:10:39 [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 07:10:39 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:10:39 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for GO... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for GO... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:10:39 [INFO] ---------------------------------------------- +2021-11-19 07:10:39 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:10:39 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:10:39 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:10:39 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:10:39 [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 07:10:39 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:10:39 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for HTML... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:10:39 [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 07:10:39 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:10:39 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for JAVA... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:10:39 [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 07:10:39 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:10:39 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:10:39 [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 07:10: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 07:10:39 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:10:39 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:10:39 [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 07:10: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 07:10:39 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:10:39 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:10:39 [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 07:10:39 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:10:39 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for JSON... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:10:39 [DEBUG] Loading rules for JSONC... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:10:39 [DEBUG] Loading rules for JSX... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:10:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:39 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:10:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:10:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:10:39 [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 07:10: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 07:10:39 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:10:39 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:10:39 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:10:39 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:10:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:39 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:10:40 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:10:40 [DEBUG] Loading rules for LATEX... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:10:40 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for LUA... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:10:40 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:10:40 [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 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:10:40 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:10:40 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:10:40 [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 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:10:40 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for PERL... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:10:40 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:10:40 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:10:40 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:10:40 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:10:40 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:10:40 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:40 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:10:40 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:40 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:10:40 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:10:40 [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 07:10:40 [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 07:10:40 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:10:40 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:10:40 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:10:40 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:10:40 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:40 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:10:40 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:10:41 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:10:41 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:10:41 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:10:41 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:10:41 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for R... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for R... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:10:41 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for RAKU... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:10:41 [DEBUG] Loading rules for RUBY... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:10:41 [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 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:10:41 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:10:41 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:10:41 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:10:41 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:10:41 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:10:41 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:10:41 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:10:41 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:10:41 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:10:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:41 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:10:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:41 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:10:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:41 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:10:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:10:41 [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 07:10:41 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:10:42 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:10:42 [DEBUG] Loading rules for STATES... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:10:42 [DEBUG] Loading rules for SQL... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:42 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:10:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:42 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:10:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:10:42 [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 07:10:42 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:10:42 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:10:42 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:10:42 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:10:42 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:42 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:10:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:42 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:10:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:10:42 [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 07:10:42 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:10:42 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:10:42 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:42 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:10:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:42 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:10:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:10:42 [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 07:10:42 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:10:42 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:10:42 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:10:42 [DEBUG] Loading rules for TSX... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:42 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:10:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:42 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:10:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:10:42 [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 07:10:42 [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 07:10:42 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:10:42 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:10:42 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:42 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:10:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:42 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:10:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:10:42 [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 07:10:42 [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 07:10:42 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:10:42 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:10:42 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:42 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:10:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:42 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:10:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:10:42 [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 07:10:42 [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 07:10:42 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:10:42 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:10:42 [DEBUG] Loading rules for XML... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for XML... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:10:42 [DEBUG] Loading rules for YAML... +2021-11-19 07:10:42 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:10:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:10:42 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:10:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:10:42 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:10:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:10:42 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:10:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:10:42 [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 07:10:42 [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 07:10:42 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:10:42 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:10:42 [DEBUG] ENV:[browser] +2021-11-19 07:10:42 [DEBUG] ENV:[es6] +2021-11-19 07:10:42 [DEBUG] ENV:[jest] +2021-11-19 07:10:42 [DEBUG] ENV:[browser] +2021-11-19 07:10:42 [DEBUG] ENV:[es6] +2021-11-19 07:10:43 [DEBUG] ENV:[jest] +2021-11-19 07:10:43 [DEBUG] --- Linter commands --- +2021-11-19 07:10:43 [DEBUG] ----------------------- +2021-11-19 07:10:43 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:10:43 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:10:43 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:10:43 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:10:43 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:10:43 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:10:43 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:10:43 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:10:43 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:10:43 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:10:43 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:10:43 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 07:10:43 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:10:43 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:10:43 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:10:43 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:10:43 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:10:43 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:10:43 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:10:43 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:10:43 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:10:43 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:10:43 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:10:43 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:10:43 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:10:43 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:10:43 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:10:43 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:10:43 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:10:43 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:10:43 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:10:43 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:10:43 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:10:43 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:10:43 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:10:43 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:10:43 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:10:43 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:10:43 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:10:43 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:10:43 [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 07:10:43 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:10:43 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:10:43 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:10:43 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:10:43 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:10:43 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:10:43 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:10:43 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:10:43 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:10:43 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:10:43 [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 07:10:43 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:10:43 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:10:43 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:10:43 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:10:43 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:10:43 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:10:43 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:10:43 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:10:43 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:10:43 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:10:43 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:10:43 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:10:43 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:10:43 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:10:43 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:10:43 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:10:43 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:10:43 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:10:43 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:10:43 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:10:43 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:10:43 [DEBUG] --------------------------------------------- +2021-11-19 07:10:43 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:10:43 [DEBUG] Building file list... +2021-11-19 07:10:43 [DEBUG] Validate all code base: true... +2021-11-19 07:10:43 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:10:43 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:10:43 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:10:43 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:10:43 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:10:43 [DEBUG] ---------------------------------------------- +2021-11-19 07:10:43 [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 07:10:43 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:10:43 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:10:44 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:10:44 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:10:44 [DEBUG] ----------------------- +2021-11-19 07:10:44 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:10:44 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:10:44 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:10:44 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:10:44 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:10:44 [DEBUG] --------------------------------------------- +2021-11-19 07:10:44 [INFO] --------------------------------- +2021-11-19 07:10:44 [INFO] ------ File list to check: ------ +2021-11-19 07:10:44 [INFO] --------------------------------- +2021-11-19 07:10:44 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:10:44 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:10:44 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:10:44 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:10:44 [DEBUG]  +2021-11-19 07:10:44 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:10:44 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:10:44 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:10:44 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:10:44 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:10:44 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:10:44 [DEBUG]  +2021-11-19 07:10:44 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:10:44 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:10:44 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:10:44 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:10:44 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:10:44 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:10:44 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:10:44 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:10:44 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:10:44 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:10:44 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:10:44 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:10:44 [DEBUG]  +2021-11-19 07:10:44 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:10:45 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:10:45 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:45 [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 07:10:45 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:45 [DEBUG]  +2021-11-19 07:10:45 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:10:46 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:46 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:46 [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 07:10:46 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:46 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:47 [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 07:10:47 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:10:47 [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 07:10:47 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:10:47 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 07:10:47 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:10:47 [DEBUG]  +2021-11-19 07:10:47 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:10:48 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 07:10:48 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07:10:48 [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 07:10:48 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07:10:48 [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 07:10:48 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:10:48 [DEBUG]  +2021-11-19 07:10:48 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:10:49 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 07:10:49 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:10:49 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 07:10:49 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:49 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07:10:49 [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 07:10:49 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:10:49 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:10:50 [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 07:10:50 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:10:50 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 07:10:50 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:10:50 [DEBUG]  +2021-11-19 07:10:50 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:10:51 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:10:51 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:10:51 [DEBUG]  +2021-11-19 07:10:51 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:10:52 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:10:52 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:10:52 [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 07:10:52 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:10:52 [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 07:10:52 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:10:52 [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 07:10:52 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:10:52 [DEBUG]  +2021-11-19 07:10:52 [INFO] ---------------------------------------------- +2021-11-19 07:10:52 [INFO] Successfully gathered list of files... +2021-11-19 07:10:52 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:10:52 [DEBUG] ------------------------------------ +2021-11-19 07:10:52 [DEBUG] ENV: +2021-11-19 07:10:52 [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_GO=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=08f2cb55da3d +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.IIuCHBmQUe +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=true +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 07:10:52 [DEBUG] ------------------------------------ +2021-11-19 07:10:52 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:10:52 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:10:52 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:52 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 07:10:52 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 07:10:52 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 07:10:52 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 07:10:52 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 07:10:52 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 07:10:52 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:52 [DEBUG] Running linter for the ARM language... +2021-11-19 07:10:52 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 07:10:53 [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 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the BASH language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to shellcheck... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to shellcheck --color --external-sources... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_BASH file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking shellcheck linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[BASH] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the CPP language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the CSS language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the DART language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 07:10:53 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:10:53 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:10:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:10:53 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 07:10:53 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 07:10:53 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 07:10:53 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 07:10:53 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:10:53 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 07:10:53 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:10:53 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:10:53 [INFO]  +2021-11-19 07:10:53 [INFO] ---------------------------------------------- +2021-11-19 07:10:53 [INFO] ---------------------------------------------- +2021-11-19 07:10:53 [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/.gitignore /tmp/lint/.golangci.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/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 07:10:53 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 07:10:53 [INFO] ---------------------------------------------- +2021-11-19 07:10:53 [INFO] ---------------------------------------------- +2021-11-19 07:10:53 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 07:10:53 [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 07:10:53 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:53 [INFO] --------------------------- +2021-11-19 07:10:53 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 07:10:53 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:53 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 07:10:53 [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 07:10:53 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:53 [INFO] --------------------------- +2021-11-19 07:10:53 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 07:10:53 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:53 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:10:53 [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 07:10:53 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:53 [INFO] --------------------------- +2021-11-19 07:10:53 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:10:54 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 07:10:54 [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 07:10:54 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 07:10:54 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 07:10:54 [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 07:10:54 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 07:10:54 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:10:54 [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 07:10:54 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:10:54 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:10:54 [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 07:10:54 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:10:54 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:10:54 [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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:10:54 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:10:54 [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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:10:54 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:10: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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:10:54 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:10: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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:10:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:10: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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:10:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 07:10: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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 07:10:54 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 07:10: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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 07:10:54 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:10: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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:10:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:10: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 07:10:54 [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 07:10:54 [INFO] --------------------------- +2021-11-19 07:10:54 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:10:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:54 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:10:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:10:55 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:10:55 [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 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:10:55 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:55 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:10:55 [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 07:10:55 [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 07:10:55 [INFO] --------------------------- +2021-11-19 07:10:55 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:10:55 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:10:56 [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 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:10:56 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:10:56 [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 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:10:56 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:10:56 [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 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:10:56 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:10:56 [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 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:10:56 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:10:56 [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 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:10:56 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:10:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:10:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:10:56 [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 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:10:56 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:10:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:10:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:10:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:10:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:10:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:10:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:10:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:10:56 [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 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:10:56 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 07:10:56 [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 07:10:56 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 07:10:56 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:56 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 07:10:56 [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 07:10:56 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:56 [INFO] --------------------------- +2021-11-19 07:10:56 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 07:10:56 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:10: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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:10:57 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:10:57 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:10:57 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:10:57 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:10:57 [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 07:10:57 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:10:57 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:10:57 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:10:57 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07:10: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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:10:57 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:10:57 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:10:57 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:10:57 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:10:57 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:10:57 [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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:10:57 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:57 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:10: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 07:10:57 [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 07:10:57 [INFO] --------------------------- +2021-11-19 07:10:57 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:10:58 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:10:58 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:10:58 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:10:58 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:10:58 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:10: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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:10:58 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:10:58 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:10:58 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:10:58 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:10:58 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:10:58 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:10: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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:10:58 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:10:58 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:58 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:10:58 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:10:58 [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 07:10:58 [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 07:10:58 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:10:59 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:10:59 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:10:59 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:10:59 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:10:59 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:10:59 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:10:59 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:10:59 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:10:59 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:10:59 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:10:59 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:10:59 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:10:59 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:10:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:10:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:10:59 [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 07:10:59 [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 07:10:59 [INFO] --------------------------- +2021-11-19 07:10:59 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:11:00 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:11:00 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:11: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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:11:00 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:11:00 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:11:00 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:11:00 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:11:00 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:11:00 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:11:00 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:11: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 07:11:00 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:11:00 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:11:00 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:11:00 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:11:00 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:00 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:11:00 [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 07:11:00 [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 07:11:00 [INFO] --------------------------- +2021-11-19 07:11:00 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:11:01 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:11:01 [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 07:11:01 [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 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:11:01 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:11:01 [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 07:11:01 [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 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:11:01 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:11:01 [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 07:11:01 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:11:01 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:11:01 [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 07:11:01 [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 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:11:01 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:11: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 07:11:01 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:11:01 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:11:01 [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 07:11:01 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:11:01 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:11:01 [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 07:11:01 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:11:01 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:11:01 [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 07:11:01 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:11:01 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:11:01 [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 07:11:01 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:11:01 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:11: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 07:11:01 [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 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:11:01 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:11:01 [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 07:11:01 [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 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:11:01 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:11:01 [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 07:11:01 [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 07:11:01 [INFO] --------------------------- +2021-11-19 07:11:01 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:11:01 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:01 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:11:01 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:11:02 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:11:02 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:11:02 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:11:02 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:11:02 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:11:02 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:11:02 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:11:02 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:11:02 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:11:02 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:11:02 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:11:02 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:11:02 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:11: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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:11:02 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:11: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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:11:02 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:11:02 [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 07:11:02 [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 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:11:02 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 07:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:02 [DEBUG] Running linter for the ENV language... +2021-11-19 07:11:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:11:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:11:02 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 07:11:02 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 07:11:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 07:11:02 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 07:11:02 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 07:11:02 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 07:11:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:11:02 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:11:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:11:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:11:02 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:11:02 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:11:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:11:02 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:11:02 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:11:02 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:11:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:11:02 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:11:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:11:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:11:02 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 07:11:02 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 07:11:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 07:11:02 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:11:02 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 07:11:02 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:11:02 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:11:02 [INFO]  +2021-11-19 07:11:02 [INFO] ---------------------------------------------- +2021-11-19 07:11:02 [INFO] ---------------------------------------------- +2021-11-19 07:11:02 [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/.gitignore /tmp/lint/.golangci.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/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 07:11:02 [INFO] Linting [GITLEAKS] files... +2021-11-19 07:11:02 [INFO] ---------------------------------------------- +2021-11-19 07:11:02 [INFO] ---------------------------------------------- +2021-11-19 07:11:02 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 07:11:02 [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 07:11:02 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:02 [INFO] --------------------------- +2021-11-19 07:11:02 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 07:11:02 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 07:11:03 [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 07:11:03 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 07:11:03 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:11:03 [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 07:11:03 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:11:03 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 07:11:03 [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 07:11:03 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 07:11:03 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 07:11:03 [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 07:11:03 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 07:11:03 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:11:03 [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 07:11:03 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:11:03 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:11:03 [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 07:11:03 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:11:03 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:11:03 [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 07:11:03 [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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:11:03 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:11:03 [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 07:11:03 [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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:11:03 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:11:03 [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 07:11:03 [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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:11:03 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:11: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 07:11:03 [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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:11:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:11: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 07:11:03 [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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:11:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 07:11:03 [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 07:11: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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 07:11:03 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 07:11: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 07:11: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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:03 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 07:11:03 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 07:11:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:11: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 07:11: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 07:11:03 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:11: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 07:11:04 [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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:11: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 07:11: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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:11: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 07:11: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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:11:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:11: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 07:11: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 07:11:04 [INFO] --------------------------- +2021-11-19 07:11:04 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:11:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:11:05 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:11:05 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:11:05 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:11:05 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:11:05 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:11:05 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:11:05 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:11: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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:11:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:11:05 [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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:11:05 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:11: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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:11:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:11: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 07:11:05 [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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:11:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:11: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 07:11: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 07:11:05 [INFO] --------------------------- +2021-11-19 07:11:05 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:11:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:05 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:11: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 07:11:06 [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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:11:06 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 07:11:06 [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 07:11:06 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 07:11:06 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 07:11:06 [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 07:11:06 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 07:11:06 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:11:06 [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 07:11:06 [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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:11:06 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:11:06 [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 07:11:06 [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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:11:06 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:11:06 [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 07:11:06 [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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:11:06 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:11:06 [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 07:11:06 [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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:11:06 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:11:06 [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 07:11:06 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:11:06 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:11:06 [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 07:11:06 [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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:11:06 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:11:06 [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 07:11:06 [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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:11:06 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07:11: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 07:11: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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:11:06 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:11: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 07:11: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 07:11:06 [INFO] --------------------------- +2021-11-19 07:11:06 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:11:06 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 07:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:11:07 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:11:07 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:11:07 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:11:07 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:11:07 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:11:07 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:11:07 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:11:07 [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 07:11:07 [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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:11:07 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:11: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 07:11: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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:11:07 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:11: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 07:11: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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:11:07 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:11: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 07:11: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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:11:07 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 07:11:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:07 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:11: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 07:11: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 07:11:07 [INFO] --------------------------- +2021-11-19 07:11:07 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:11:08 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:11:08 [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 07:11:08 [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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:11:08 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:11:08 [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 07:11:08 [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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:11:08 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:11:08 [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 07:11:08 [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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:11:08 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:11:08 [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 07:11:08 [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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:11:08 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:11:08 [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 07:11:08 [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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:11:08 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:11:08 [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 07:11:08 [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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:11:08 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:11:08 [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 07:11:08 [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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:11:08 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:11: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 07:11: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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:11:08 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:11: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 07:11: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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:11:08 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:11: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 07:11: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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:11:08 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:11: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 07:11: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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:11:08 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:11: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 07:11: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 07:11:08 [INFO] --------------------------- +2021-11-19 07:11:08 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:11:08 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 07:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:11:09 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:11:09 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:11:09 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:11:09 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:11:09 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:11:09 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:11:09 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:11:09 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:11:09 [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 07:11:09 [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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:11:09 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:11: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 07:11: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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:11:09 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:11: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 07:11: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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:11:09 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:11: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 07:11: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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:11:09 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 07:11:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:09 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:11: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 07:11: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 07:11:09 [INFO] --------------------------- +2021-11-19 07:11:09 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:11:10 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:11:10 [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 07:11:10 [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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:11:10 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:11:10 [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 07:11:10 [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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:11:10 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:11:10 [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 07:11:10 [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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:11:10 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:11:10 [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 07:11:10 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:11:10 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:11: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 07:11:10 [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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:11:10 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:11:10 [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 07:11:10 [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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:11:10 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:11: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 07:11:10 [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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:11:10 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:11: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 07:11:10 [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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:11:10 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:11: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 07:11: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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:11:10 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:11: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 07:11: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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:10 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:11:10 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 07:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:10 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:11: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 07:11: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 07:11:10 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:11:11 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:11:11 [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 07:11:11 [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 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:11:11 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:11: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 07:11:11 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:11:11 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:11:11 [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 07:11:11 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:11:11 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:11:11 [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 07:11:11 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:11:11 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:11:11 [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 07:11:11 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:11:11 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:11:11 [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 07:11:11 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:11:11 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:11: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 07:11:11 [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 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:11:11 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:11:11 [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 07:11:11 [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 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:11:11 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:11:11 [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 07:11:11 [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 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:11:11 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:11:11 [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 07:11:11 [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 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:11:11 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 07:11:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:11 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:11:11 [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 07:11:11 [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 07:11:11 [INFO] --------------------------- +2021-11-19 07:11:11 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:11:12 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:11:12 [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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:11:12 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:11:12 [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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:11:12 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:11:12 [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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:11:12 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:11:12 [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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:11:12 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:11:12 [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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:11:12 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:11: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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:11:12 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:11: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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:11:12 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:11:12 [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 07:11:12 [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 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:11:12 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 07:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:11:12 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:11:12 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:11:12 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:11:12 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 07:11:12 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 07:11:12 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 07:11:12 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 07:11:12 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 07:11:12 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 07:11:12 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:11:12 [DEBUG] Running linter for the GO language... +2021-11-19 07:11:12 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:11:12 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:11:12 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:11:12 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:11:12 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:11:12 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:11:12 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:11:12 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:11:12 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:11:12 [INFO]  +2021-11-19 07:11:12 [INFO] ---------------------------------------------- +2021-11-19 07:11:12 [INFO] ---------------------------------------------- +2021-11-19 07:11:12 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:11:12 [INFO] Linting [GO] files... +2021-11-19 07:11:12 [INFO] ---------------------------------------------- +2021-11-19 07:11:12 [INFO] ---------------------------------------------- +2021-11-19 07:11:12 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:11:12 [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 07:11:12 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:12 [INFO] --------------------------- +2021-11-19 07:11:12 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:11:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:13 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:11:13 [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 07:11:13 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:13 [INFO] --------------------------- +2021-11-19 07:11:13 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:11:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:14 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:11:14 [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 07:11:14 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:14 [INFO] --------------------------- +2021-11-19 07:11:14 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:11:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:15 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:11: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 07:11:15 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:15 [INFO] --------------------------- +2021-11-19 07:11:15 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:11:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:16 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:11:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:16 [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 07:11:16 [INFO] --------------------------- +2021-11-19 07:11:16 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:11:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:16 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:17 [INFO] --------------------------- +2021-11-19 07:11:17 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:11:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:11: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 07:11:17 [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: go +2021-11-19 07:11:17 [INFO] --------------------------- +2021-11-19 07:11:17 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:11:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:18 [INFO] --------------------------- +2021-11-19 07:11:18 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:11:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:11: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 07:11:19 [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: go +2021-11-19 07:11:19 [INFO] --------------------------- +2021-11-19 07:11:19 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:11:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:11: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 07:11:20 [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: go +2021-11-19 07:11:20 [INFO] --------------------------- +2021-11-19 07:11:20 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:11:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:22 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:11:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:22 [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: go +2021-11-19 07:11:22 [INFO] --------------------------- +2021-11-19 07:11:22 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:11:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:22 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:11:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:23 [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: go +2021-11-19 07:11:23 [INFO] --------------------------- +2021-11-19 07:11:23 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:11:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:23 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:11:23 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:23 [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: go +2021-11-19 07:11:23 [INFO] --------------------------- +2021-11-19 07:11:23 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:11:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:24 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:11:24 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:24 [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: go +2021-11-19 07:11:24 [INFO] --------------------------- +2021-11-19 07:11:24 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:11:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:25 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:11:25 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:25 [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: go +2021-11-19 07:11:25 [INFO] --------------------------- +2021-11-19 07:11:25 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:11:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:26 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:11:26 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:26 [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: go +2021-11-19 07:11:26 [INFO] --------------------------- +2021-11-19 07:11:26 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:11:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:27 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:11:27 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:27 [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: go +2021-11-19 07:11:27 [INFO] --------------------------- +2021-11-19 07:11:27 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:11:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:28 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:11:28 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:28 [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: go +2021-11-19 07:11:28 [INFO] --------------------------- +2021-11-19 07:11:28 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:11:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:28 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:11:28 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:28 [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: go +2021-11-19 07:11:28 [INFO] --------------------------- +2021-11-19 07:11:28 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:11:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:29 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:11:29 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:29 [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: go +2021-11-19 07:11:29 [INFO] --------------------------- +2021-11-19 07:11:29 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:11:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:30 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:11:30 [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 07:11:30 [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: go +2021-11-19 07:11:30 [INFO] --------------------------- +2021-11-19 07:11:30 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:11:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:31 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:11:31 [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 07:11:31 [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: go +2021-11-19 07:11:31 [INFO] --------------------------- +2021-11-19 07:11:31 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:11:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:32 [INFO] --------------------------- +2021-11-19 07:11:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:11:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:33 [INFO] --------------------------- +2021-11-19 07:11:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:11:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:34 [INFO] --------------------------- +2021-11-19 07:11:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:11:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:35 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:11:35 [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 07:11:35 [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: go +2021-11-19 07:11:35 [INFO] --------------------------- +2021-11-19 07:11:35 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:11:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:11:36 [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 07:11:36 [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: go +2021-11-19 07:11:36 [INFO] --------------------------- +2021-11-19 07:11:36 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:11:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:37 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:37 [INFO] --------------------------- +2021-11-19 07:11:37 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:11:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:38 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:11:38 [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 07:11:38 [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: go +2021-11-19 07:11:38 [INFO] --------------------------- +2021-11-19 07:11:38 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:11:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:39 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:11:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:11:39 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:39 [INFO] --------------------------- +2021-11-19 07:11:39 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:11:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:40 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:11: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 07:11:40 [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: go +2021-11-19 07:11:40 [INFO] --------------------------- +2021-11-19 07:11:40 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:11:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:41 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:11: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 07:11:41 [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: go +2021-11-19 07:11:41 [INFO] --------------------------- +2021-11-19 07:11:41 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:11:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:42 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:42 [INFO] --------------------------- +2021-11-19 07:11:42 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:11:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:43 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:11:43 [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 07:11:43 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:43 [INFO] --------------------------- +2021-11-19 07:11:43 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:11:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:44 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:11: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 07:11:44 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:44 [INFO] --------------------------- +2021-11-19 07:11:44 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:11:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:45 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:11:45 [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 07:11:45 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:45 [INFO] --------------------------- +2021-11-19 07:11:45 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:11:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:46 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:11:46 [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 07:11:46 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:46 [INFO] --------------------------- +2021-11-19 07:11:46 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:11:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:48 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:11: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 07:11:48 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:48 [INFO] --------------------------- +2021-11-19 07:11:48 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:11:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:49 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:11:49 [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 07:11:49 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:49 [INFO] --------------------------- +2021-11-19 07:11:49 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:11:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:50 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:11:50 [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 07:11:50 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:50 [INFO] --------------------------- +2021-11-19 07:11:50 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:11:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:50 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07:11:50 [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 07:11:50 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:50 [INFO] --------------------------- +2021-11-19 07:11:50 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:11:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:51 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:11:51 [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 07:11:51 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:51 [INFO] --------------------------- +2021-11-19 07:11:51 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:11:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:53 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:11:53 [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 07:11:53 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:53 [INFO] --------------------------- +2021-11-19 07:11:53 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:11:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:54 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:11:54 [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 07:11:54 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:54 [INFO] --------------------------- +2021-11-19 07:11:54 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:11:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:11: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 07:11: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: go +2021-11-19 07:11:55 [INFO] --------------------------- +2021-11-19 07:11:55 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:11:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:56 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:11:56 [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 07:11:56 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:56 [INFO] --------------------------- +2021-11-19 07:11:56 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:11:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:57 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:11: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 07:11:57 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:57 [INFO] --------------------------- +2021-11-19 07:11:57 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:11:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:58 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:11:58 [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 07:11:58 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:58 [INFO] --------------------------- +2021-11-19 07:11:58 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:11:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:11:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:11:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:11:59 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:11:59 [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 07:11:59 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:11:59 [INFO] --------------------------- +2021-11-19 07:11:59 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:12:00 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:00 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:00 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:00 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:12:00 [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 07:12:00 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:00 [INFO] --------------------------- +2021-11-19 07:12:00 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:12:01 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:01 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:01 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:01 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:01 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:01 [INFO] --------------------------- +2021-11-19 07:12:01 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:12:02 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:02 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:02 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:02 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:12: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 07:12:02 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:02 [INFO] --------------------------- +2021-11-19 07:12:02 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:12:03 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:03 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:03 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:03 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:03 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:12:03 [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 07:12:03 [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: go +2021-11-19 07:12:03 [INFO] --------------------------- +2021-11-19 07:12:03 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:12:05 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:05 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:05 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:05 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:12:05 [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 07:12:05 [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: go +2021-11-19 07:12:05 [INFO] --------------------------- +2021-11-19 07:12:05 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:12:06 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:06 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:06 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:06 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:06 [INFO] --------------------------- +2021-11-19 07:12:06 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:12:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:07 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:07 [INFO] --------------------------- +2021-11-19 07:12:07 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:12:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:08 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:12:08 [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 07:12:08 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:08 [INFO] --------------------------- +2021-11-19 07:12:08 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:12:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:12:09 [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 07:12:09 [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: go +2021-11-19 07:12:09 [INFO] --------------------------- +2021-11-19 07:12:09 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:12:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:12:09 [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 07:12:09 [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: go +2021-11-19 07:12:09 [INFO] --------------------------- +2021-11-19 07:12:09 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:12:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:12:10 [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 07:12:10 [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: go +2021-11-19 07:12:10 [INFO] --------------------------- +2021-11-19 07:12:10 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:12:11 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:11 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:11 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:12:11 [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 07:12:11 [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: go +2021-11-19 07:12:11 [INFO] --------------------------- +2021-11-19 07:12:11 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:12:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:12 [INFO] --------------------------- +2021-11-19 07:12:12 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:12:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:13 [INFO] --------------------------- +2021-11-19 07:12:13 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:12:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:12: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 07:12:14 [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: go +2021-11-19 07:12:14 [INFO] --------------------------- +2021-11-19 07:12:14 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:12:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:15 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:12:15 [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 07:12:15 [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: go +2021-11-19 07:12:15 [INFO] --------------------------- +2021-11-19 07:12:15 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:12:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:16 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:12:16 [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 07:12:16 [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: go +2021-11-19 07:12:16 [INFO] --------------------------- +2021-11-19 07:12:16 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:12:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:17 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:12:17 [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 07:12:17 [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: go +2021-11-19 07:12:17 [INFO] --------------------------- +2021-11-19 07:12:17 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:12:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:17 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:12:17 [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 07:12:17 [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: go +2021-11-19 07:12:17 [INFO] --------------------------- +2021-11-19 07:12:17 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:12:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:18 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:12:18 [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 07:12:18 [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: go +2021-11-19 07:12:18 [INFO] --------------------------- +2021-11-19 07:12:18 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:12:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:19 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:12:19 [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 07:12:19 [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: go +2021-11-19 07:12:19 [INFO] --------------------------- +2021-11-19 07:12:19 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:12:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:20 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:12:20 [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 07:12:20 [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: go +2021-11-19 07:12:20 [INFO] --------------------------- +2021-11-19 07:12:20 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:12:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:12:21 [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 07:12:21 [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: go +2021-11-19 07:12:21 [INFO] --------------------------- +2021-11-19 07:12:21 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:12:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:12:22 [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 07:12:22 [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: go +2021-11-19 07:12:22 [INFO] --------------------------- +2021-11-19 07:12:22 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:12:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:23 [INFO] --------------------------- +2021-11-19 07:12:23 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:12:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:24 [INFO] --------------------------- +2021-11-19 07:12:24 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:12:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:24 [INFO] --------------------------- +2021-11-19 07:12:24 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:12:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:25 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:12:25 [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 07:12:25 [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: go +2021-11-19 07:12:25 [INFO] --------------------------- +2021-11-19 07:12:25 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:12:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:26 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:12:26 [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 07:12:26 [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: go +2021-11-19 07:12:26 [INFO] --------------------------- +2021-11-19 07:12:26 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:12:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:27 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:12:27 [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 07:12:27 [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: go +2021-11-19 07:12:27 [INFO] --------------------------- +2021-11-19 07:12:27 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:12:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:28 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:12:28 [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 07:12:28 [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: go +2021-11-19 07:12:28 [INFO] --------------------------- +2021-11-19 07:12:28 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:12:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:28 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:12:28 [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 07:12:28 [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: go +2021-11-19 07:12:28 [INFO] --------------------------- +2021-11-19 07:12:28 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:12:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:29 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:12:29 [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 07:12:29 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:29 [INFO] --------------------------- +2021-11-19 07:12:29 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:12:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:30 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:12:30 [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 07:12:30 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:30 [INFO] --------------------------- +2021-11-19 07:12:30 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:12:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:32 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:12:32 [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 07:12:32 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:32 [INFO] --------------------------- +2021-11-19 07:12:32 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:12:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:33 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:12:33 [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 07:12:33 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:33 [INFO] --------------------------- +2021-11-19 07:12:33 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:12:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:34 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:12: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 07:12:34 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:34 [INFO] --------------------------- +2021-11-19 07:12:34 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:12:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:35 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:12:35 [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 07:12:35 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:35 [INFO] --------------------------- +2021-11-19 07:12:35 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:12:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:37 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:37 [INFO] --------------------------- +2021-11-19 07:12:37 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:12:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:38 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:38 [INFO] --------------------------- +2021-11-19 07:12:38 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:12:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:39 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:12:39 [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 07:12:39 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:39 [INFO] --------------------------- +2021-11-19 07:12:39 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:12:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:40 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:12:40 [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 07:12:40 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:40 [INFO] --------------------------- +2021-11-19 07:12:40 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:12:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:42 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:12: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 07:12:42 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:42 [INFO] --------------------------- +2021-11-19 07:12:42 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:12:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:43 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:12: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 07:12:43 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:43 [INFO] --------------------------- +2021-11-19 07:12:43 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:12:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:44 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:12:44 [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 07:12:44 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:44 [INFO] --------------------------- +2021-11-19 07:12:44 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:12:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:45 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:12:45 [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 07:12:45 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:45 [INFO] --------------------------- +2021-11-19 07:12:45 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:12:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:46 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:12:46 [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 07:12:46 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:46 [INFO] --------------------------- +2021-11-19 07:12:46 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:12:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:48 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:12: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 07:12:48 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:48 [INFO] --------------------------- +2021-11-19 07:12:48 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:12:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:49 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:12:49 [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 07:12:49 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:49 [INFO] --------------------------- +2021-11-19 07:12:49 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:12:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:50 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:12:50 [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 07:12:50 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:50 [INFO] --------------------------- +2021-11-19 07:12:50 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:12:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:51 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:12:51 [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 07:12:51 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:51 [INFO] --------------------------- +2021-11-19 07:12:51 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:12:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:52 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:12:52 [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 07:12:52 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:52 [INFO] --------------------------- +2021-11-19 07:12:52 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:12:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:53 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:12: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 07:12:53 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:53 [INFO] --------------------------- +2021-11-19 07:12:53 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:12:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:54 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:12:54 [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 07:12:54 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:54 [INFO] --------------------------- +2021-11-19 07:12:54 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:12:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:55 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:12: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 07:12:55 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:55 [INFO] --------------------------- +2021-11-19 07:12:55 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:12:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:56 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:12:56 [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 07:12:56 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:56 [INFO] --------------------------- +2021-11-19 07:12:56 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:12:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:57 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:12:57 [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 07:12:57 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:12:57 [INFO] --------------------------- +2021-11-19 07:12:57 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:12:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:58 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:12: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 07:12: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: go +2021-11-19 07:12:58 [INFO] --------------------------- +2021-11-19 07:12:58 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:12:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:12:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:12:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:12:59 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:12:59 [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 07:12:59 [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: go +2021-11-19 07:12:59 [INFO] --------------------------- +2021-11-19 07:12:59 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:13:00 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:13:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:13:00 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:13:00 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:13:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:13: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 07:13: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: go +2021-11-19 07:13:00 [INFO] --------------------------- +2021-11-19 07:13:00 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:13:01 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:13:01 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:13:01 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:13:01 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:13:01 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the GROOVY language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the HTML language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the JAVA language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the JSCPD language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:13:01 [DEBUG] Running linter for the JSON language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the JSONC language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the JSX language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 07:13:01 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 07:13:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 07:13:01 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 07:13:01 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 07:13:01 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 07:13:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:01 [DEBUG] Running linter for the LATEX language... +2021-11-19 07:13:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 07:13:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 07:13:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 07:13:02 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 07:13:02 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 07:13:02 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 07:13:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:02 [DEBUG] Running linter for the LUA language... +2021-11-19 07:13:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 07:13:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 07:13:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 07:13:02 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 07:13:02 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 07:13:02 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 07:13:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:02 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 07:13:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 07:13:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 07:13:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 07:13:02 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 07:13:02 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 07:13:02 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 07:13:02 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:13:02 [INFO]  +2021-11-19 07:13:02 [INFO] ---------------------------------------------- +2021-11-19 07:13:02 [INFO] ---------------------------------------------- +2021-11-19 07:13:02 [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 07:13:02 [INFO] Linting [MARKDOWN] files... +2021-11-19 07:13:02 [INFO] ---------------------------------------------- +2021-11-19 07:13:02 [INFO] ---------------------------------------------- +2021-11-19 07:13:02 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:13: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 07:13:02 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 07:13:02 [INFO] --------------------------- +2021-11-19 07:13:02 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:13:02 [DEBUG] Found errors. Error code: 1, File type: MARKDOWN, Error on missing exec bit: false +2021-11-19 07:13:02 [ERROR] Found errors in [markdownlint] linter! +2021-11-19 07:13:02 [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 07:13:02 [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 07:13:02 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 07:13:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 07:13:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 07:13:02 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 07:13:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 07:13:02 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 07:13:02 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 07:13:02 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 07:13:03 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:13:03 [INFO]  +2021-11-19 07:13:03 [INFO] ---------------------------------------------- +2021-11-19 07:13:03 [INFO] ---------------------------------------------- +2021-11-19 07:13:03 [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 07:13:03 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 07:13:03 [INFO] ---------------------------------------------- +2021-11-19 07:13:03 [INFO] ---------------------------------------------- +2021-11-19 07:13:03 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 07:13:03 [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 07:13:03 [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 07:13:03 [INFO] --------------------------- +2021-11-19 07:13:03 [INFO] File:[/tmp/lint/README.md] +2021-11-19 07:13:04 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 07:13:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 07:13:04 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PERL language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 07:13:04 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 07:13:04 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 07:13:04 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 07:13:04 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 07:13:04 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:04 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 07:13:04 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 07:13:04 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the R language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the RAKU language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the RUBY language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to shfmt... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to shfmt -d... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SHELL_SHFMT... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_SHELL_SHFMT file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking shfmt linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[SHELL_SHFMT] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:05 [DEBUG] Running linter for the STATES language... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 07:13:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 07:13:05 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 07:13:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 07:13:05 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 07:13:05 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 07:13:05 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 07:13:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:06 [DEBUG] Running linter for the SQL language... +2021-11-19 07:13:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 07:13:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:06 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 07:13:06 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 07:13:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 07:13:06 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 07:13:06 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 07:13:06 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 07:13:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:06 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 07:13:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 07:13:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:06 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 07:13:06 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 07:13:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 07:13:07 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 07:13:07 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 07:13:07 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 07:13:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:07 [DEBUG] Running linter for the TEKTON language... +2021-11-19 07:13:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 07:13:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:07 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the TSX language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the XML language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 07:13:08 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 07:13:08 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 07:13:08 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 07:13:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:13:08 [DEBUG] Running linter for the YAML language... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 07:13:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 07:13:08 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 07:13:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 07:13:09 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.golangci.yml +2021-11-19 07:13:09 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 07:13:09 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.golangci.yml +2021-11-19 07:13:09 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:13:09 [INFO]  +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [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/.golangci.yml +2021-11-19 07:13:09 [INFO] Linting [YAML] files... +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 07:13:09 [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 07:13:09 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 07:13:09 [INFO] --------------------------- +2021-11-19 07:13:09 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 07:13:09 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 07:13:09 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [INFO] The script has completed +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [INFO] ---------------------------------------------- +2021-11-19 07:13:09 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 07:13:09 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 07:13:09 [ERROR] ERRORS FOUND in GO:[109] +2021-11-19 07:13:09 [DEBUG] Calling Multi-Status API for GO with status error +2021-11-19 07:13:09 [ERROR] ERRORS FOUND in MARKDOWN:[1] +2021-11-19 07:13:09 [DEBUG] Calling Multi-Status API for MARKDOWN with status error +2021-11-19 07:13:09 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 07:13:09 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 07:13:09 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:36:00 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:36:00 [INFO] --------------------------------------------- +2021-11-19 07:36:00 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:36:00 [INFO] - Image Creation Date:[] +2021-11-19 07:36:00 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:36:00 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:36:00 [INFO] --------------------------------------------- +2021-11-19 07:36:00 [INFO] --------------------------------------------- +2021-11-19 07:36:00 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:36:00 [INFO] - https://github.com/github/super-linter +2021-11-19 07:36:00 [INFO] --------------------------------------------- +2021-11-19 07:36:00 [DEBUG] --------------------------------------------- +2021-11-19 07:36:00 [DEBUG] Linter Version Info: +2021-11-19 07:36:00 [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 07:36:00 [DEBUG] --------------------------------------------- +2021-11-19 07:36:00 [INFO] -------------------------------------------- +2021-11-19 07:36:00 [INFO] Gathering GitHub information... +2021-11-19 07:36:00 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:36:00 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:36:00 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:36:00 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:36:00 [INFO] -------------------------------------------- +2021-11-19 07:36:00 [INFO] Gathering user validation information... +2021-11-19 07:36:00 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:36:00 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:36:00 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:36:00 [DEBUG] Defining variables for GO linter... +2021-11-19 07:36:00 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:36:00 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:36:00 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:36:00 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:36:00 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 07:36:00 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 07:36:00 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 07:36:00 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [R] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 07:36:01 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 07:36:01 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:36:01 [DEBUG] --------------------------------------------- +2021-11-19 07:36:01 [DEBUG] Runner:[root] +2021-11-19 07:36:01 [DEBUG] ENV: +2021-11-19 07:36:01 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=ac78c937d3ae +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.BHSwLZBA4K +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 07:36:01 [DEBUG] --------------------------------------------- +2021-11-19 07:36:01 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:36:01 [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 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:36:01 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for ARM... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:36:01 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for BASH... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:36:01 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:36:01 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:36:01 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:36:01 [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 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:36:01 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:36:01 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:36:01 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for CPP... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:36:01 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:36:01 [DEBUG] Loading rules for CSS... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:36:01 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for DART... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for DART... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:36:01 [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 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:36:01 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:36:01 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:01 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:36:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:01 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:36:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:36:01 [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 07:36:01 [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 07:36:01 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:36:01 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:36:01 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:36:01 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:36:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:01 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:36:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:36:02 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for ENV... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:36:02 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:36:02 [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 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:36:02 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:36:02 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:36:02 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for GO... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for GO... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:36:02 [INFO] ---------------------------------------------- +2021-11-19 07:36:02 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:36:02 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:36:02 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:36:02 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:36:02 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for HTML... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:36:02 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for JAVA... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:36:02 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:36:02 [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 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:36:02 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:36:02 [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 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:36:02 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:36:02 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for JSON... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:36:02 [DEBUG] Loading rules for JSONC... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:36:02 [DEBUG] Loading rules for JSX... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:36:02 [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 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:36:02 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:36:02 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:36:02 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:36:02 [DEBUG] Loading rules for LATEX... +2021-11-19 07:36:02 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:36:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:02 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:36:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:02 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:36:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:02 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:36:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:36:02 [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 07:36:02 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:36:03 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for LUA... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:36:03 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:36:03 [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 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:36:03 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:36:03 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:36:03 [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 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:36:03 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PERL... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:36:03 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:36:03 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:36:03 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:36:03 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:36:03 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:36:03 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:36:03 [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 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:36:03 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:36:03 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:36:03 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:36:03 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:36:03 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:36:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:03 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:36:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:03 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:36:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:03 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:36:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:36:03 [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 07:36:03 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:36:03 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:36:03 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:36:04 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for R... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for R... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:36:04 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for RAKU... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:36:04 [DEBUG] Loading rules for RUBY... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:36:04 [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 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:36:04 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:36:04 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:36:04 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:36:04 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:36:04 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:36:04 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:36:04 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:36:04 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for STATES... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:36:04 [DEBUG] Loading rules for SQL... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:36:04 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:36:04 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:36:04 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:36:04 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:36:04 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:36:04 [DEBUG] Loading rules for TSX... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:36:04 [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 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:36:04 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:36:04 [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 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:36:04 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:04 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:36:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:04 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:36:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:36:04 [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 07:36:04 [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 07:36:04 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:36:04 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:36:04 [DEBUG] Loading rules for XML... +2021-11-19 07:36:04 [DEBUG] Getting linter rules for XML... +2021-11-19 07:36:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:04 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:36:04 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:36:04 [DEBUG] Loading rules for YAML... +2021-11-19 07:36:05 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:36:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:36:05 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:36:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:36:05 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:36:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:36:05 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:36:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:36:05 [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 07:36:05 [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 07:36:05 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:36:05 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:36:05 [DEBUG] ENV:[browser] +2021-11-19 07:36:05 [DEBUG] ENV:[es6] +2021-11-19 07:36:05 [DEBUG] ENV:[jest] +2021-11-19 07:36:05 [DEBUG] ENV:[browser] +2021-11-19 07:36:05 [DEBUG] ENV:[es6] +2021-11-19 07:36:05 [DEBUG] ENV:[jest] +2021-11-19 07:36:05 [DEBUG] --- Linter commands --- +2021-11-19 07:36:05 [DEBUG] ----------------------- +2021-11-19 07:36:05 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:36:05 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:36:05 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:36:05 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:36:05 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:36:05 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:36:05 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:36:05 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:36:05 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:36:05 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:36:05 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:36:05 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 07:36:05 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:36:05 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:36:05 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:36:05 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:36:05 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:36:05 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:36:05 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:36:05 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:36:05 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:36:05 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:36:05 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:36:05 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:36:05 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:36:05 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:36:05 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:36:05 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:36:05 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:36:05 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:36:05 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:36:05 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:36:05 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:36:05 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:36:05 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:36:05 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:36:05 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:36:05 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:36:05 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:36:05 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:36:05 [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 07:36:05 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:36:05 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:36:05 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:36:05 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:36:05 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:36:05 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:36:05 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:36:05 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:36:05 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:36:05 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:36:05 [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 07:36:05 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:36:05 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:36:05 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:36:05 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:36:05 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:36:05 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:36:05 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:36:05 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:36:05 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:36:05 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:36:05 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:36:05 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:36:05 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:36:05 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:36:05 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:36:05 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:36:05 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:36:05 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:36:05 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:36:05 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:36:05 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:36:05 [DEBUG] --------------------------------------------- +2021-11-19 07:36:05 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:36:05 [DEBUG] Building file list... +2021-11-19 07:36:05 [DEBUG] Validate all code base: true... +2021-11-19 07:36:05 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:36:05 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:36:05 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:36:05 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:36:05 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:36:05 [DEBUG] ---------------------------------------------- +2021-11-19 07:36:05 [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 07:36:06 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:36:06 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:36:06 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:36:06 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:36:06 [DEBUG] ----------------------- +2021-11-19 07:36:06 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:36:06 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:36:06 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:36:06 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:36:06 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:36:06 [DEBUG] --------------------------------------------- +2021-11-19 07:36:06 [INFO] --------------------------------- +2021-11-19 07:36:06 [INFO] ------ File list to check: ------ +2021-11-19 07:36:06 [INFO] --------------------------------- +2021-11-19 07:36:06 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:36:06 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:36:06 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:36:06 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:36:06 [DEBUG]  +2021-11-19 07:36:06 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:36:06 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:36:06 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:36:07 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:36:07 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:36:07 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:36:07 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:36:07 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:36:07 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:36:07 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:36:07 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:36:07 [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 07:36:07 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:07 [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 07:36:07 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:07 [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 07:36:07 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:36:07 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:36:07 [DEBUG]  +2021-11-19 07:36:07 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:36:07 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:36:07 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:36:08 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:36:08 [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 07:36:08 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:36:08 [DEBUG]  +2021-11-19 07:36:08 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:08 [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 07:36:09 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:36:09 [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 07:36:09 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:09 [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 07:36:09 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:09 [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 07:36:09 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:09 [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 07:36:09 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:36:09 [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 07:36:09 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:36:09 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:36:09 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:36:09 [DEBUG]  +2021-11-19 07:36:09 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07:36:10 [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 07:36:10 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07:36:10 [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 07:36:10 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:36:10 [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 07:36:10 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:36:10 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 07:36:10 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:36:10 [DEBUG]  +2021-11-19 07:36:10 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:36:11 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 07:36:11 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07:36:11 [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 07:36:11 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:36:11 [DEBUG]  +2021-11-19 07:36:11 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:36:12 [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 07:36:12 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:36:12 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 07:36:12 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:36:12 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:36:12 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:36:12 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:36:12 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:36:12 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 07:36:12 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:36:12 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 07:36:12 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:36:12 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 07:36:12 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07:36:12 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 07:36:12 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:36:12 [DEBUG]  +2021-11-19 07:36:12 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:36:13 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:36:13 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:36:13 [DEBUG]  +2021-11-19 07:36:13 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:36:14 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:36:14 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:36:14 [DEBUG]  +2021-11-19 07:36:14 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:36:14 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:36:14 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:36:14 [DEBUG]  +2021-11-19 07:36:14 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:36:14 [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 07:36:14 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:36:14 [DEBUG]  +2021-11-19 07:36:14 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:36:14 [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 07:36:14 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:36:14 [DEBUG]  +2021-11-19 07:36:14 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:36:14 [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 07:36:14 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:36:14 [DEBUG]  +2021-11-19 07:36:14 [INFO] ---------------------------------------------- +2021-11-19 07:36:14 [INFO] Successfully gathered list of files... +2021-11-19 07:36:14 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:36:14 [DEBUG] ------------------------------------ +2021-11-19 07:36:14 [DEBUG] ENV: +2021-11-19 07:36:14 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=ac78c937d3ae +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.BHSwLZBA4K +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 07:36:14 [DEBUG] ------------------------------------ +2021-11-19 07:36:14 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the ARM language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the BASH language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the CPP language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the CSS language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the DART language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the ENV language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:36:14 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:36:14 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:36:14 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:36:14 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:36:14 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:36:14 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:36:14 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:36:14 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:36:14 [DEBUG] Running linter for the GO language... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:36:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:36:14 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:36:14 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:36:14 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:36:14 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:36:14 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:36:14 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:36:14 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:36:14 [INFO]  +2021-11-19 07:36:14 [INFO] ---------------------------------------------- +2021-11-19 07:36:14 [INFO] ---------------------------------------------- +2021-11-19 07:36:14 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:36:14 [INFO] Linting [GO] files... +2021-11-19 07:36:14 [INFO] ---------------------------------------------- +2021-11-19 07:36:14 [INFO] ---------------------------------------------- +2021-11-19 07:36:14 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:36:14 [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 07:36:14 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:14 [INFO] --------------------------- +2021-11-19 07:36:14 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:36:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:15 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:36:15 [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 07:36:15 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:15 [INFO] --------------------------- +2021-11-19 07:36:15 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:36:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:16 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:36:16 [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 07:36:16 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:16 [INFO] --------------------------- +2021-11-19 07:36:16 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:36:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:17 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:36: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 07:36:17 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:17 [INFO] --------------------------- +2021-11-19 07:36:17 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:36:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:18 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:18 [INFO] --------------------------- +2021-11-19 07:36:18 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:36:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:19 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:36: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 07:36:19 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:19 [INFO] --------------------------- +2021-11-19 07:36:19 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:36:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:36: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 07:36:20 [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: go +2021-11-19 07:36:20 [INFO] --------------------------- +2021-11-19 07:36:20 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:36:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:36: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 07:36:20 [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: go +2021-11-19 07:36:20 [INFO] --------------------------- +2021-11-19 07:36:20 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:36:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:21 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:36:21 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:21 [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: go +2021-11-19 07:36:21 [INFO] --------------------------- +2021-11-19 07:36:21 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:36:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:22 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:36:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:22 [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: go +2021-11-19 07:36:22 [INFO] --------------------------- +2021-11-19 07:36:22 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:36:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:23 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07:36:23 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:23 [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: go +2021-11-19 07:36:23 [INFO] --------------------------- +2021-11-19 07:36:23 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:36:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:24 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07:36:24 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:24 [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: go +2021-11-19 07:36:24 [INFO] --------------------------- +2021-11-19 07:36:24 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:36:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:24 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07:36:24 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:24 [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: go +2021-11-19 07:36:24 [INFO] --------------------------- +2021-11-19 07:36:24 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:36:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:25 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:36:25 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:25 [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: go +2021-11-19 07:36:25 [INFO] --------------------------- +2021-11-19 07:36:25 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:36:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:26 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:36:26 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:26 [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: go +2021-11-19 07:36:26 [INFO] --------------------------- +2021-11-19 07:36:26 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:36:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:27 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:36:27 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:27 [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: go +2021-11-19 07:36:27 [INFO] --------------------------- +2021-11-19 07:36:27 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:36:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:28 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:36:28 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:28 [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: go +2021-11-19 07:36:28 [INFO] --------------------------- +2021-11-19 07:36:28 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:36:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:29 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:36:29 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:29 [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: go +2021-11-19 07:36:29 [INFO] --------------------------- +2021-11-19 07:36:29 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:36:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:29 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:36:29 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:29 [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: go +2021-11-19 07:36:29 [INFO] --------------------------- +2021-11-19 07:36:29 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:36:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:30 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:36: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 07:36:30 [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: go +2021-11-19 07:36:30 [INFO] --------------------------- +2021-11-19 07:36:30 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:36:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:31 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:31 [INFO] --------------------------- +2021-11-19 07:36:31 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:36:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:32 [INFO] --------------------------- +2021-11-19 07:36:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:36:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:33 [INFO] --------------------------- +2021-11-19 07:36:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:36:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:36: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 07:36:34 [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: go +2021-11-19 07:36:34 [INFO] --------------------------- +2021-11-19 07:36:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:36:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:34 [INFO] --------------------------- +2021-11-19 07:36:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:36:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:35 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:36:35 [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 07:36:35 [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: go +2021-11-19 07:36:35 [INFO] --------------------------- +2021-11-19 07:36:35 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:36:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:36:36 [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 07:36:36 [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: go +2021-11-19 07:36:36 [INFO] --------------------------- +2021-11-19 07:36:36 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:36:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:37 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:37 [INFO] --------------------------- +2021-11-19 07:36:37 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:36:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:38 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:36:38 [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 07:36:38 [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: go +2021-11-19 07:36:38 [INFO] --------------------------- +2021-11-19 07:36:38 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:36:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:39 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:36:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:36:39 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:39 [INFO] --------------------------- +2021-11-19 07:36:39 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:36:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:40 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:36: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 07:36:40 [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: go +2021-11-19 07:36:40 [INFO] --------------------------- +2021-11-19 07:36:40 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:36:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:40 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:36: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 07:36:40 [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: go +2021-11-19 07:36:40 [INFO] --------------------------- +2021-11-19 07:36:40 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:36:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:41 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:36: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 07:36:41 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:41 [INFO] --------------------------- +2021-11-19 07:36:41 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:36:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:42 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:36: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 07:36:42 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:42 [INFO] --------------------------- +2021-11-19 07:36:42 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:36:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:43 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:36:43 [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 07:36:43 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:43 [INFO] --------------------------- +2021-11-19 07:36:43 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:36:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:44 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:36: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 07:36:44 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:44 [INFO] --------------------------- +2021-11-19 07:36:44 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:36:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:45 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:36:45 [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 07:36:45 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:45 [INFO] --------------------------- +2021-11-19 07:36:45 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:36:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:45 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:36:46 [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 07:36:46 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:46 [INFO] --------------------------- +2021-11-19 07:36:46 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:36:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:46 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:36:46 [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 07:36:46 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:46 [INFO] --------------------------- +2021-11-19 07:36:46 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:36:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:47 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:36:47 [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 07:36:47 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:47 [INFO] --------------------------- +2021-11-19 07:36:47 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:36:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:48 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:48 [INFO] --------------------------- +2021-11-19 07:36:48 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:36:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:49 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:36:49 [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 07:36:49 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:49 [INFO] --------------------------- +2021-11-19 07:36:49 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:36:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:50 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:36:50 [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 07:36:50 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:50 [INFO] --------------------------- +2021-11-19 07:36:50 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:36:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:51 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:36:51 [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 07:36:51 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:51 [INFO] --------------------------- +2021-11-19 07:36:51 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:36:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:52 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:36: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 07:36:52 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:52 [INFO] --------------------------- +2021-11-19 07:36:52 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:36:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:53 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:36:53 [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 07:36:53 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:53 [INFO] --------------------------- +2021-11-19 07:36:53 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:36:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:53 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:36: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 07:36:53 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:53 [INFO] --------------------------- +2021-11-19 07:36:53 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:36:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:54 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:36:54 [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 07:36:54 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:54 [INFO] --------------------------- +2021-11-19 07:36:54 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:36:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:55 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:36: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 07:36:55 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:55 [INFO] --------------------------- +2021-11-19 07:36:55 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:36:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:56 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:36: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 07:36: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: go +2021-11-19 07:36:56 [INFO] --------------------------- +2021-11-19 07:36:56 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:36:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:57 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:36:57 [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 07:36:57 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:57 [INFO] --------------------------- +2021-11-19 07:36:57 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:36:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:58 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:36: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 07:36:58 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:36:58 [INFO] --------------------------- +2021-11-19 07:36:58 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:36:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:36:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:36:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:36:59 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:36:59 [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 07:36:59 [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: go +2021-11-19 07:36:59 [INFO] --------------------------- +2021-11-19 07:36:59 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:37:00 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:00 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:00 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:00 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:37:00 [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 07:37:00 [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: go +2021-11-19 07:37:00 [INFO] --------------------------- +2021-11-19 07:37:00 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:37:01 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:01 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:01 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:01 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:01 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:37:01 [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 07:37:01 [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: go +2021-11-19 07:37:01 [INFO] --------------------------- +2021-11-19 07:37:01 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:37:02 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:02 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:02 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:02 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:02 [INFO] --------------------------- +2021-11-19 07:37:02 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:37:03 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:03 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:03 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:03 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:03 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:37:03 [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 07:37:03 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:03 [INFO] --------------------------- +2021-11-19 07:37:03 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:37:04 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:04 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:04 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:04 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:04 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:37:04 [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 07:37:04 [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: go +2021-11-19 07:37:04 [INFO] --------------------------- +2021-11-19 07:37:04 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:37:05 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:05 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:05 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:05 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:37:05 [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 07:37:05 [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: go +2021-11-19 07:37:05 [INFO] --------------------------- +2021-11-19 07:37:05 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:37:06 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:06 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:06 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:06 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:37:06 [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 07:37:06 [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: go +2021-11-19 07:37:06 [INFO] --------------------------- +2021-11-19 07:37:06 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:37:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:07 [INFO] --------------------------- +2021-11-19 07:37:07 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:37:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:08 [INFO] --------------------------- +2021-11-19 07:37:08 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:37:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:10 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:37:10 [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 07:37:10 [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: go +2021-11-19 07:37:10 [INFO] --------------------------- +2021-11-19 07:37:10 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:37:11 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:11 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:11 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:11 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:37:11 [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 07:37:11 [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: go +2021-11-19 07:37:11 [INFO] --------------------------- +2021-11-19 07:37:11 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:37:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:12 [INFO] --------------------------- +2021-11-19 07:37:12 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:37:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:13 [INFO] --------------------------- +2021-11-19 07:37:13 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:37:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:37:14 [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 07:37:14 [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: go +2021-11-19 07:37:14 [INFO] --------------------------- +2021-11-19 07:37:14 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:37:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:15 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:37:15 [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 07:37:15 [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: go +2021-11-19 07:37:15 [INFO] --------------------------- +2021-11-19 07:37:15 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:37:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:16 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:37:16 [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 07:37:16 [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: go +2021-11-19 07:37:16 [INFO] --------------------------- +2021-11-19 07:37:16 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:37:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:17 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:37:17 [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 07:37:17 [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: go +2021-11-19 07:37:17 [INFO] --------------------------- +2021-11-19 07:37:17 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:37:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:18 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:37:18 [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 07:37:18 [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: go +2021-11-19 07:37:18 [INFO] --------------------------- +2021-11-19 07:37:18 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:37:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:19 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:37:19 [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 07:37:19 [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: go +2021-11-19 07:37:19 [INFO] --------------------------- +2021-11-19 07:37:19 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:37:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:20 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:37:20 [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 07:37:20 [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: go +2021-11-19 07:37:20 [INFO] --------------------------- +2021-11-19 07:37:20 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:37:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:37:21 [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 07:37:21 [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: go +2021-11-19 07:37:21 [INFO] --------------------------- +2021-11-19 07:37:21 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:37:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:37:22 [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 07:37:22 [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: go +2021-11-19 07:37:22 [INFO] --------------------------- +2021-11-19 07:37:22 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:37:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:23 [INFO] --------------------------- +2021-11-19 07:37:23 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:37:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:24 [INFO] --------------------------- +2021-11-19 07:37:24 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:37:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:25 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:37:25 [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 07:37:25 [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: go +2021-11-19 07:37:25 [INFO] --------------------------- +2021-11-19 07:37:25 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:37:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:25 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:37: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 07:37: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: go +2021-11-19 07:37:25 [INFO] --------------------------- +2021-11-19 07:37:25 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:37:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:26 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:37:26 [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 07:37:26 [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: go +2021-11-19 07:37:26 [INFO] --------------------------- +2021-11-19 07:37:26 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:37:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:27 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:37:27 [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 07:37:27 [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: go +2021-11-19 07:37:27 [INFO] --------------------------- +2021-11-19 07:37:27 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:37:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:28 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:37:28 [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 07:37:28 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:28 [INFO] --------------------------- +2021-11-19 07:37:28 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:37:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:29 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:37: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 07:37:29 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:29 [INFO] --------------------------- +2021-11-19 07:37:29 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:37:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:30 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:37:30 [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 07:37:30 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:30 [INFO] --------------------------- +2021-11-19 07:37:30 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:37:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:31 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:37:31 [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 07:37:31 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:31 [INFO] --------------------------- +2021-11-19 07:37:31 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:37:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:31 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:37:31 [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 07:37:31 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:31 [INFO] --------------------------- +2021-11-19 07:37:31 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:37:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:32 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:37:32 [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 07:37:32 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:32 [INFO] --------------------------- +2021-11-19 07:37:32 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:37:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:33 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:37:33 [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 07:37:33 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:33 [INFO] --------------------------- +2021-11-19 07:37:33 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:37:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:34 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:37:34 [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 07:37:34 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:34 [INFO] --------------------------- +2021-11-19 07:37:34 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:37:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:35 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:37:35 [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 07:37:35 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:35 [INFO] --------------------------- +2021-11-19 07:37:35 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:37:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:36 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:37:36 [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 07:37:36 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:36 [INFO] --------------------------- +2021-11-19 07:37:36 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:37:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:37 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:37: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 07:37:37 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:37 [INFO] --------------------------- +2021-11-19 07:37:37 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:37:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:38 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:37: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 07:37:38 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:38 [INFO] --------------------------- +2021-11-19 07:37:38 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:37:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:39 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:37: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 07:37:39 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:39 [INFO] --------------------------- +2021-11-19 07:37:39 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:37:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:40 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:37:40 [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 07:37:40 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:40 [INFO] --------------------------- +2021-11-19 07:37:40 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:37:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:41 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:37:41 [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 07:37:41 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:41 [INFO] --------------------------- +2021-11-19 07:37:41 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:37:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:42 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:37: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 07:37:42 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:42 [INFO] --------------------------- +2021-11-19 07:37:42 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:37:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:43 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:37:43 [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 07:37:43 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:43 [INFO] --------------------------- +2021-11-19 07:37:43 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:37:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:44 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:37:44 [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 07:37:44 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:44 [INFO] --------------------------- +2021-11-19 07:37:44 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:37:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:44 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:37:44 [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 07:37:44 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:44 [INFO] --------------------------- +2021-11-19 07:37:44 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:37:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:45 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:37:45 [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 07:37:45 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:45 [INFO] --------------------------- +2021-11-19 07:37:45 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:37:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:46 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:37:46 [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 07:37:46 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:46 [INFO] --------------------------- +2021-11-19 07:37:46 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:37:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:47 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:37: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 07:37:47 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:47 [INFO] --------------------------- +2021-11-19 07:37:47 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:37:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:48 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:37:48 [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 07:37:48 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:48 [INFO] --------------------------- +2021-11-19 07:37:48 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:37:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:49 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:49 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:37: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 07:37:49 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:49 [INFO] --------------------------- +2021-11-19 07:37:49 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:37:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:50 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:37:50 [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 07:37:50 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:37:50 [INFO] --------------------------- +2021-11-19 07:37:50 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:37:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:51 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:37:51 [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 07:37:51 [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: go +2021-11-19 07:37:51 [INFO] --------------------------- +2021-11-19 07:37:51 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:37:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:51 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:37: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 07:37:51 [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: go +2021-11-19 07:37:51 [INFO] --------------------------- +2021-11-19 07:37:51 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:37:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:52 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:37:52 [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 07:37:52 [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: go +2021-11-19 07:37:52 [INFO] --------------------------- +2021-11-19 07:37:52 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:37:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:37:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:37:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:37:53 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the GROOVY language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the HTML language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the JAVA language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the JSCPD language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the JSON language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the JSONC language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the JSX language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the LATEX language... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 07:37:53 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:53 [DEBUG] Running linter for the LUA language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PERL language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the R language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the RAKU language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the RUBY language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the STATES language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the SQL language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the TEKTON language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the TSX language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the XML language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [DEBUG] Running linter for the YAML language... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 07:37:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:37:54 [INFO] ---------------------------------------------- +2021-11-19 07:37:54 [INFO] ---------------------------------------------- +2021-11-19 07:37:54 [INFO] The script has completed +2021-11-19 07:37:54 [INFO] ---------------------------------------------- +2021-11-19 07:37:54 [INFO] ---------------------------------------------- +2021-11-19 07:37:54 [ERROR] ERRORS FOUND in GO:[109] +2021-11-19 07:37:54 [DEBUG] Calling Multi-Status API for GO with status error +2021-11-19 07:37:54 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:39:58 [INFO] - Image Creation Date:[] +2021-11-19 07:39:58 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:39:58 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:39:58 [INFO] - https://github.com/github/super-linter +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] Linter Version Info: +2021-11-19 07:39:58 [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 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [INFO] -------------------------------------------- +2021-11-19 07:39:58 [INFO] Gathering GitHub information... +2021-11-19 07:39:58 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:39:58 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:39:58 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:39:58 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:39:58 [INFO] -------------------------------------------- +2021-11-19 07:39:58 [INFO] Gathering user validation information... +2021-11-19 07:39:58 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:39:58 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:39:58 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:39:58 [DEBUG] Defining variables for GO linter... +2021-11-19 07:39:58 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:39:58 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:39:58 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:39:58 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:39:58 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 07:39:58 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [R] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 07:39:58 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] Runner:[root] +2021-11-19 07:39:58 [DEBUG] ENV: +2021-11-19 07:39:58 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=3a57eecc7072 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.CUOAolGXHa +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:39:58 [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 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:39:58 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for ARM... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:39:58 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for BASH... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:39:58 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:39:58 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:39:58 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:39:58 [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 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:39:58 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:39:58 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:39:59 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for CPP... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:39:59 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:39:59 [DEBUG] Loading rules for CSS... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:39:59 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for DART... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for DART... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:39:59 [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 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:39:59 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:39:59 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:39:59 [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 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:39:59 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:39:59 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for ENV... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:39:59 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:39:59 [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 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:39:59 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:39:59 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:39:59 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GO... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GO... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:39:59 [INFO] ---------------------------------------------- +2021-11-19 07:39:59 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:39:59 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:39:59 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:39:59 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:39:59 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for HTML... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:39:59 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for JAVA... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:39:59 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:40:00 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for JSON... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:40:00 [DEBUG] Loading rules for JSONC... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:40:00 [DEBUG] Loading rules for JSX... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:40:00 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:40:00 [DEBUG] Loading rules for LATEX... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:40:00 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for LUA... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:40:00 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:40:00 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:40:00 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:40:00 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PERL... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:40:00 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:40:00 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:40:00 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:40:01 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:40:01 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:40:01 [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 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:40:01 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for R... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for R... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:40:01 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for RAKU... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:40:01 [DEBUG] Loading rules for RUBY... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:40:01 [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 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:40:01 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:40:01 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:40:01 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:40:01 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:40:01 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:40:01 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:40:01 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:40:01 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for STATES... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:40:01 [DEBUG] Loading rules for SQL... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:40:02 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:40:02 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:40:02 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:40:02 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:40:02 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:40:02 [DEBUG] Loading rules for TSX... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for XML... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for XML... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:40:02 [DEBUG] Loading rules for YAML... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:40:02 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:40:02 [DEBUG] ENV:[browser] +2021-11-19 07:40:02 [DEBUG] ENV:[es6] +2021-11-19 07:40:02 [DEBUG] ENV:[jest] +2021-11-19 07:40:02 [DEBUG] ENV:[browser] +2021-11-19 07:40:02 [DEBUG] ENV:[es6] +2021-11-19 07:40:02 [DEBUG] ENV:[jest] +2021-11-19 07:40:02 [DEBUG] --- Linter commands --- +2021-11-19 07:40:02 [DEBUG] ----------------------- +2021-11-19 07:40:02 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:40:02 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:40:02 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:40:02 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:40:02 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:40:02 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:02 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:40:02 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:40:02 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:40:02 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:40:02 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:40:02 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 07:40:02 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:40:02 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:40:02 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:40:02 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:40:02 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:40:03 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:40:03 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:40:03 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:40:03 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:40:03 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:40:03 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:40:03 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:40:03 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:40:03 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:40:03 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:40:03 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:40:03 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:40:03 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:40:03 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:40:03 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:40:03 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:40:03 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:40:03 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:40:03 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:40:03 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:40:03 [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 07:40:03 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:40:03 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:40:03 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:40:03 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:40:03 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:40:03 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:40:03 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:40:03 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:03 [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 07:40:03 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:40:03 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:40:03 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:40:03 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:40:03 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:40:03 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:40:03 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:40:03 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:40:03 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:40:03 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:40:03 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:40:03 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:40:03 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:40:03 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:40:03 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:40:03 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:40:03 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:40:03 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:40:03 [DEBUG] --------------------------------------------- +2021-11-19 07:40:03 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:40:03 [DEBUG] Building file list... +2021-11-19 07:40:03 [DEBUG] Validate all code base: true... +2021-11-19 07:40:03 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:40:03 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:40:03 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:40:03 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:40:03 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:40:03 [DEBUG] ---------------------------------------------- +2021-11-19 07:40:03 [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 07:40:03 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:40:03 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:40:04 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:40:04 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:40:04 [DEBUG] ----------------------- +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:40:04 [DEBUG] --------------------------------------------- +2021-11-19 07:40:04 [INFO] --------------------------------- +2021-11-19 07:40:04 [INFO] ------ File list to check: ------ +2021-11-19 07:40:04 [INFO] --------------------------------- +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:40:04 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:40:04 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:40:04 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:40:04 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:40:04 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:40:04 [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 07:40:04 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07:40:07 [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 07:40:07 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07:40:07 [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 07:40:07 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:40:08 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 07:40:08 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:40:08 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 07:40:08 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:40:11 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:40:11 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:40:11 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:40:11 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:40:11 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:40:11 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:40:11 [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 07:40:11 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:40:11 [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 07:40:11 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:40:11 [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 07:40:11 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [INFO] Successfully gathered list of files... +2021-11-19 07:40:11 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:40:11 [DEBUG] ------------------------------------ +2021-11-19 07:40:11 [DEBUG] ENV: +2021-11-19 07:40:11 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=3a57eecc7072 +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.CUOAolGXHa +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 07:40:11 [DEBUG] ------------------------------------ +2021-11-19 07:40:11 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the ARM language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the BASH language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CPP language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CSS language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the DART language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the ENV language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:40:11 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:40:11 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:40:11 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:40:11 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:40:11 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:40:11 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the GO language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:40:11 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:40:11 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:40:11 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:40:11 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:40:11 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:40:11 [INFO]  +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:40:11 [INFO] Linting [GO] files... +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:40:11 [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 07:40:11 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:11 [INFO] --------------------------- +2021-11-19 07:40:11 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:40:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:12 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:40:12 [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 07:40:12 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:12 [INFO] --------------------------- +2021-11-19 07:40:12 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:40:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:13 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:40:13 [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 07:40:13 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:13 [INFO] --------------------------- +2021-11-19 07:40:13 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:40:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:14 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:40:14 [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 07:40:14 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:14 [INFO] --------------------------- +2021-11-19 07:40:14 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:40:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:15 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:40:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:40:15 [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 07:40:15 [INFO] --------------------------- +2021-11-19 07:40:15 [INFO] File:[/tmp/lint/example/config/main.go] +super-linter Log +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:39:57 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:39:58 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:39:58 [INFO] - Image Creation Date:[] +2021-11-19 07:39:58 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:39:58 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:39:58 [INFO] - https://github.com/github/super-linter +2021-11-19 07:39:58 [INFO] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] Linter Version Info: +2021-11-19 07:39:58 [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 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [INFO] -------------------------------------------- +2021-11-19 07:39:58 [INFO] Gathering GitHub information... +2021-11-19 07:39:58 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:39:58 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:39:58 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:39:58 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:39:58 [INFO] -------------------------------------------- +2021-11-19 07:39:58 [INFO] Gathering user validation information... +2021-11-19 07:39:58 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:39:58 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:39:58 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:39:58 [DEBUG] Defining variables for GO linter... +2021-11-19 07:39:58 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:39:58 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:39:58 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:39:58 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:39:58 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 07:39:58 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [R] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 07:39:58 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 07:39:58 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] Runner:[root] +2021-11-19 07:39:58 [DEBUG] ENV: +2021-11-19 07:39:58 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=3a57eecc7072 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.CUOAolGXHa +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 07:39:58 [DEBUG] --------------------------------------------- +2021-11-19 07:39:58 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:39:58 [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 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:39:58 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for ARM... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:39:58 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for BASH... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:39:58 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:39:58 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:39:58 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:39:58 [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 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:39:58 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:39:58 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:39:58 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:58 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:39:58 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:58 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:39:58 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:58 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:39:58 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:39:58 [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 07:39:58 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:39:58 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:39:58 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:39:59 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for CPP... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:39:59 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:39:59 [DEBUG] Loading rules for CSS... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:39:59 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for DART... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for DART... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:39:59 [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 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:39:59 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:39:59 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:39:59 [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 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:39:59 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:39:59 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for ENV... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:39:59 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:39:59 [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 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:39:59 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:39:59 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:39:59 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GO... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GO... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:39:59 [INFO] ---------------------------------------------- +2021-11-19 07:39:59 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:39:59 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:39:59 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:39:59 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:39:59 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for HTML... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:39:59 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for JAVA... +2021-11-19 07:39:59 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:39:59 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:39:59 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:39:59 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:39:59 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:39:59 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:39:59 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:39:59 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:39:59 [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 07:39:59 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:39:59 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:39:59 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:40:00 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for JSON... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:40:00 [DEBUG] Loading rules for JSONC... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:40:00 [DEBUG] Loading rules for JSX... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:00 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:40:00 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:40:00 [DEBUG] Loading rules for LATEX... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:40:00 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for LUA... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:40:00 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:40:00 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:40:00 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:40:00 [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 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:40:00 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PERL... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:40:00 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:40:00 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:40:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:00 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:40:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:40:00 [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 07:40:00 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:40:00 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:40:00 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:40:00 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:40:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:00 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:40:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:00 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:40:01 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:40:01 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:40:01 [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 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:40:01 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:40:01 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for R... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for R... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:40:01 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for RAKU... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:40:01 [DEBUG] Loading rules for RUBY... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:40:01 [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 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:40:01 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:40:01 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:40:01 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:40:01 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:40:01 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:40:01 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:40:01 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:40:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:40:01 [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 07:40:01 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:40:01 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:40:01 [DEBUG] Loading rules for STATES... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:40:01 [DEBUG] Loading rules for SQL... +2021-11-19 07:40:01 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:40:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:01 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:40:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:01 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:40:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:01 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:40:02 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:40:02 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:40:02 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:40:02 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:40:02 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:40:02 [DEBUG] Loading rules for TSX... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:40:02 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:40:02 [DEBUG] Loading rules for XML... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for XML... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:40:02 [DEBUG] Loading rules for YAML... +2021-11-19 07:40:02 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:40:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:40:02 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:40:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:40:02 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:40:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:40:02 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:40:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:40:02 [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 07:40:02 [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 07:40:02 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:40:02 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:40:02 [DEBUG] ENV:[browser] +2021-11-19 07:40:02 [DEBUG] ENV:[es6] +2021-11-19 07:40:02 [DEBUG] ENV:[jest] +2021-11-19 07:40:02 [DEBUG] ENV:[browser] +2021-11-19 07:40:02 [DEBUG] ENV:[es6] +2021-11-19 07:40:02 [DEBUG] ENV:[jest] +2021-11-19 07:40:02 [DEBUG] --- Linter commands --- +2021-11-19 07:40:02 [DEBUG] ----------------------- +2021-11-19 07:40:02 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:40:02 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:40:02 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:40:02 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:40:02 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:40:02 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:02 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:40:02 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:40:02 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:40:02 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:40:02 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:40:02 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 07:40:02 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:40:02 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:40:02 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:40:02 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:40:02 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:40:03 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:40:03 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:40:03 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:40:03 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:40:03 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:40:03 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:40:03 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:40:03 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:40:03 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:40:03 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:40:03 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:40:03 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:40:03 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:40:03 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:40:03 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:40:03 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:40:03 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:40:03 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:40:03 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:40:03 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:40:03 [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 07:40:03 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:40:03 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:40:03 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:40:03 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:40:03 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:40:03 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:40:03 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:40:03 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:03 [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 07:40:03 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:40:03 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:40:03 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:40:03 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:40:03 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:40:03 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:40:03 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:40:03 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:40:03 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:40:03 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:40:03 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:40:03 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:40:03 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:40:03 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:40:03 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:40:03 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:40:03 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:40:03 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:40:03 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:40:03 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:40:03 [DEBUG] --------------------------------------------- +2021-11-19 07:40:03 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:40:03 [DEBUG] Building file list... +2021-11-19 07:40:03 [DEBUG] Validate all code base: true... +2021-11-19 07:40:03 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:40:03 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:40:03 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:40:03 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:40:03 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:40:03 [DEBUG] ---------------------------------------------- +2021-11-19 07:40:03 [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 07:40:03 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:40:03 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:40:04 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:40:04 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:40:04 [DEBUG] ----------------------- +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:40:04 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:40:04 [DEBUG] --------------------------------------------- +2021-11-19 07:40:04 [INFO] --------------------------------- +2021-11-19 07:40:04 [INFO] ------ File list to check: ------ +2021-11-19 07:40:04 [INFO] --------------------------------- +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:40:04 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:40:04 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:40:04 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:40:04 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:40:04 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:40:04 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:40:04 [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 07:40:04 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:40:04 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:40:04 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:40:04 [DEBUG]  +2021-11-19 07:40:04 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:40:05 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:40:05 [DEBUG]  +2021-11-19 07:40:05 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:40:05 [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 07:40:05 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:40:06 [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 07:40:06 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:40:06 [DEBUG]  +2021-11-19 07:40:06 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:40:06 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:40:06 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:40:07 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 07:40:07 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07:40:07 [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 07:40:07 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07:40:07 [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 07:40:07 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:07 [DEBUG]  +2021-11-19 07:40:07 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:40:08 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 07:40:08 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:40:08 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 07:40:08 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07:40:08 [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 07:40:08 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:40:08 [DEBUG]  +2021-11-19 07:40:08 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:40:09 [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 07:40:09 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:09 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:40:09 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 07:40:09 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:40:09 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:40:10 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:40:10 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:40:10 [DEBUG]  +2021-11-19 07:40:10 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:40:11 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:40:11 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:40:11 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:40:11 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:40:11 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:40:11 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:40:11 [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 07:40:11 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:40:11 [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 07:40:11 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:40:11 [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 07:40:11 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:40:11 [DEBUG]  +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [INFO] Successfully gathered list of files... +2021-11-19 07:40:11 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:40:11 [DEBUG] ------------------------------------ +2021-11-19 07:40:11 [DEBUG] ENV: +2021-11-19 07:40:11 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=3a57eecc7072 +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.CUOAolGXHa +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 07:40:11 [DEBUG] ------------------------------------ +2021-11-19 07:40:11 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the ARM language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the BASH language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CPP language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the CSS language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the DART language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the ENV language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:40:11 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:40:11 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:40:11 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:40:11 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:40:11 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:40:11 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:40:11 [DEBUG] Running linter for the GO language... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:40:11 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:40:11 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:40:11 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:40:11 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:40:11 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:40:11 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:40:11 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:40:11 [INFO]  +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:40:11 [INFO] Linting [GO] files... +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [INFO] ---------------------------------------------- +2021-11-19 07:40:11 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:40:11 [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 07:40:11 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:11 [INFO] --------------------------- +2021-11-19 07:40:11 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:40:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:12 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:40:12 [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 07:40:12 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:12 [INFO] --------------------------- +2021-11-19 07:40:12 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:40:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:13 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:40:13 [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 07:40:13 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:13 [INFO] --------------------------- +2021-11-19 07:40:13 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:40:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:14 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:40:14 [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 07:40:14 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:40:14 [INFO] --------------------------- +2021-11-19 07:40:14 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:40:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:40:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:40:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:40:15 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:40:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:40:15 [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 07:40:15 [INFO] --------------------------- +2021-11-19 07:40:15 [INFO] File:[/tmp/lint/example/config/main.go] +super-linter Log +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:44:05 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:44:05 [INFO] --------------------------------------------- +2021-11-19 07:44:05 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:44:05 [INFO] - Image Creation Date:[] +2021-11-19 07:44:05 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:44:06 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:44:06 [INFO] --------------------------------------------- +2021-11-19 07:44:06 [INFO] --------------------------------------------- +2021-11-19 07:44:06 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:44:06 [INFO] - https://github.com/github/super-linter +2021-11-19 07:44:06 [INFO] --------------------------------------------- +2021-11-19 07:44:06 [DEBUG] --------------------------------------------- +2021-11-19 07:44:06 [DEBUG] Linter Version Info: +2021-11-19 07:44:06 [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 07:44:06 [DEBUG] --------------------------------------------- +2021-11-19 07:44:06 [INFO] -------------------------------------------- +2021-11-19 07:44:06 [INFO] Gathering GitHub information... +2021-11-19 07:44:06 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:44:06 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:44:06 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:44:06 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:44:06 [INFO] -------------------------------------------- +2021-11-19 07:44:06 [INFO] Gathering user validation information... +2021-11-19 07:44:06 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:44:06 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:44:06 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:44:06 [DEBUG] Defining variables for GO linter... +2021-11-19 07:44:06 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:44:06 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:44:06 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:44:06 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:44:06 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 07:44:06 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 07:44:06 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [R] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 07:44:06 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 07:44:06 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:44:06 [DEBUG] --------------------------------------------- +2021-11-19 07:44:06 [DEBUG] Runner:[root] +2021-11-19 07:44:06 [DEBUG] ENV: +2021-11-19 07:44:06 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=6f179974387c +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.UjvGP3nWba +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 07:44:06 [DEBUG] --------------------------------------------- +2021-11-19 07:44:06 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:07 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:44:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:07 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:44:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:44:07 [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 07:44:07 [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 07:44:07 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:44:07 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:44:07 [DEBUG] Loading rules for ARM... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:07 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:44:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:07 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:44:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:44:07 [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 07:44:07 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:44:07 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:44:07 [DEBUG] Loading rules for BASH... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:44:07 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:44:07 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:44:07 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:07 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:44:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:07 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:44:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:44:07 [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 07:44:07 [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 07:44:07 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:44:07 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:44:07 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:07 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:44:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:07 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:44:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:44:07 [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 07:44:07 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:44:07 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:44:07 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:07 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:44:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:07 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:44:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:44:07 [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 07:44:07 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:44:07 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:44:07 [DEBUG] Loading rules for CPP... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:44:07 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:44:07 [DEBUG] Loading rules for CSS... +2021-11-19 07:44:07 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:44:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:07 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:44:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:07 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:44:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:08 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:44:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:44:08 [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 07:44:08 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:44:08 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:44:08 [DEBUG] Loading rules for DART... +2021-11-19 07:44:08 [DEBUG] Getting linter rules for DART... +2021-11-19 07:44:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:08 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:44:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:08 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:44:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:08 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:44:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:44:08 [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 07:44:08 [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 07:44:08 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:44:08 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:44:08 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:44:08 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:44:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:08 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:44:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:08 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:44:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:08 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:44:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:44:08 [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 07:44:08 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:44:08 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:44:08 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:44:08 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:44:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:08 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:44:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:08 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:44:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:08 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:44:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:44:08 [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 07:44:08 [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 07:44:08 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:44:08 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:44:08 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:44:08 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:44:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:08 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:44:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:08 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:44:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:08 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:44:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:44:08 [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 07:44:08 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:44:08 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:44:08 [DEBUG] Loading rules for ENV... +2021-11-19 07:44:08 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:44:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:08 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:44:08 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:44:08 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:44:08 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:44:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:08 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:44:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:08 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:44:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:08 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:44:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:44:08 [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 07:44:08 [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 07:44:08 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:44:08 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:44:08 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:44:08 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:44:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:08 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:44:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:08 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:44:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:44:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:44:09 [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 07:44:09 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:44:09 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:44:09 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:09 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:44:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:44:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:44:09 [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 07:44:09 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:44:09 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:44:09 [DEBUG] Loading rules for GO... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for GO... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:09 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:44:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:44:09 [INFO] ---------------------------------------------- +2021-11-19 07:44:09 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:44:09 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:44:09 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:44:09 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:44:09 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:09 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:44:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:44:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:44:09 [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 07:44:09 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:44:09 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:44:09 [DEBUG] Loading rules for HTML... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:09 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:44:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:44:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:44:09 [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 07:44:09 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:44:09 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:44:09 [DEBUG] Loading rules for JAVA... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:09 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:44:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:44:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:44:09 [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 07:44:09 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:44:09 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:44:09 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:09 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:44:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:44:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:44:09 [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 07:44:09 [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 07:44:09 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:44:09 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:44:09 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:44:09 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:44:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:09 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:44:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:09 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:44:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:09 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:44:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:44:10 [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 07:44:10 [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 07:44:10 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:44:10 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:44:10 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:10 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:44:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:10 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:44:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:44:10 [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 07:44:10 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:44:10 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:44:10 [DEBUG] Loading rules for JSON... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:44:10 [DEBUG] Loading rules for JSONC... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:44:10 [DEBUG] Loading rules for JSX... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:10 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:44:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:10 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:44:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:44:10 [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 07:44:10 [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 07:44:10 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:44:10 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:44:10 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:44:10 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:44:10 [DEBUG] Loading rules for LATEX... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:10 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:44:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:10 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:44:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:44:10 [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 07:44:10 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:44:10 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:44:10 [DEBUG] Loading rules for LUA... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:10 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:44:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:10 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:44:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:44:10 [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 07:44:10 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:44:10 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:44:10 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:10 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:44:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:10 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:44:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:44:10 [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 07:44:10 [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 07:44:10 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:44:10 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:44:10 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:44:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:10 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:44:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:10 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:44:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:10 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:44:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:44:10 [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 07:44:10 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:44:10 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:44:10 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:44:10 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:44:11 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:44:11 [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 07:44:11 [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 07:44:11 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:44:11 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:44:11 [DEBUG] Loading rules for PERL... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:44:11 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:44:11 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:44:11 [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 07:44:11 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:44:11 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:44:11 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:44:11 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:44:11 [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 07:44:11 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:44:11 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:44:11 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:44:11 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:44:11 [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 07:44:11 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:44:11 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:44:11 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:44:11 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:44:11 [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 07:44:11 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:44:11 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:44:11 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:44:11 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:44:11 [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 07:44:11 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:44:11 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:44:11 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:44:11 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:44:11 [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 07:44:11 [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 07:44:11 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:44:11 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:44:11 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:44:11 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:44:11 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:11 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:44:11 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:11 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:44:11 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:11 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:44:12 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:44:12 [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 07:44:12 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:44:12 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:44:12 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:12 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:44:12 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:12 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:44:12 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:44:12 [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 07:44:12 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:44:12 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:44:12 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:12 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:44:12 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:12 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:44:12 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:44:12 [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 07:44:12 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:44:12 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:44:12 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:12 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:44:12 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:12 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:44:12 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:44:12 [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 07:44:12 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:44:12 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:44:12 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:12 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:44:12 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:12 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:44:12 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:44:12 [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 07:44:12 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:44:12 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:44:12 [DEBUG] Loading rules for R... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for R... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:12 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:44:12 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:12 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:44:12 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:44:12 [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 07:44:12 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:44:12 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:44:12 [DEBUG] Loading rules for RAKU... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:44:12 [DEBUG] Loading rules for RUBY... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:12 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:44:12 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:12 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:44:12 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:44:12 [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 07:44:12 [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 07:44:12 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:44:12 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:44:12 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:44:12 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:44:12 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:44:12 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:44:12 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:12 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:44:13 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:44:13 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:13 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:13 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:44:13 [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 07:44:13 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:44:13 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:44:13 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:44:13 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:44:13 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:13 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:13 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:44:13 [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 07:44:13 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:44:13 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:44:13 [DEBUG] Loading rules for STATES... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:44:13 [DEBUG] Loading rules for SQL... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:13 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:13 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:44:13 [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 07:44:13 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:44:13 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:44:13 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:44:13 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:44:13 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:13 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:13 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:44:13 [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 07:44:13 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:44:13 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:44:13 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:13 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:13 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:44:13 [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 07:44:13 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:44:13 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:44:13 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:44:13 [DEBUG] Loading rules for TSX... +2021-11-19 07:44:13 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:13 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:14 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:14 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:44:14 [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 07:44:14 [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 07:44:14 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:44:14 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:44:14 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:44:14 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:14 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:14 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:14 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:44:14 [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 07:44:14 [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 07:44:14 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:44:14 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:44:14 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:44:14 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:14 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:14 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:14 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:44:14 [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 07:44:14 [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 07:44:14 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:44:14 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:44:14 [DEBUG] Loading rules for XML... +2021-11-19 07:44:14 [DEBUG] Getting linter rules for XML... +2021-11-19 07:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:14 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:44:14 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:44:14 [DEBUG] Loading rules for YAML... +2021-11-19 07:44:14 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:44:14 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:44:14 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:44:14 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:44:14 [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 07:44:14 [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 07:44:14 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:44:14 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:44:14 [DEBUG] ENV:[browser] +2021-11-19 07:44:14 [DEBUG] ENV:[es6] +2021-11-19 07:44:14 [DEBUG] ENV:[jest] +2021-11-19 07:44:15 [DEBUG] ENV:[browser] +2021-11-19 07:44:15 [DEBUG] ENV:[es6] +2021-11-19 07:44:15 [DEBUG] ENV:[jest] +2021-11-19 07:44:15 [DEBUG] --- Linter commands --- +2021-11-19 07:44:15 [DEBUG] ----------------------- +2021-11-19 07:44:15 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:44:15 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:44:15 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:44:15 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:44:15 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:44:15 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:44:15 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:44:15 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:44:15 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:44:15 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:44:15 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:44:15 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 07:44:15 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:44:15 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:44:15 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:44:15 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:44:15 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:44:15 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:44:15 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:44:15 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:44:15 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:44:15 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:44:15 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:44:15 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:44:15 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:44:15 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:44:15 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:44:15 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:44:15 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:44:15 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:44:15 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:44:15 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:44:15 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:44:15 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:44:15 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:44:15 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:44:15 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:44:15 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:44:15 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:44:15 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:44:15 [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 07:44:15 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:44:15 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:44:15 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:44:15 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:44:15 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:44:15 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:44:15 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:44:15 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:44:15 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:44:15 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:44:15 [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 07:44:15 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:44:15 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:44:15 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:44:15 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:44:15 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:44:15 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:44:15 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:44:15 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:44:15 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:44:15 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:44:15 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:44:15 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:44:15 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:44:15 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:44:15 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:44:15 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:44:15 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:44:15 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:44:15 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:44:15 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:44:15 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:44:15 [DEBUG] --------------------------------------------- +2021-11-19 07:44:15 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:44:15 [DEBUG] Building file list... +2021-11-19 07:44:15 [DEBUG] Validate all code base: true... +2021-11-19 07:44:15 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:44:15 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:44:15 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:44:15 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:44:15 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:44:15 [DEBUG] ---------------------------------------------- +2021-11-19 07:44:15 [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 07:44:16 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:44:16 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:44:17 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:44:17 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:44:17 [DEBUG] ----------------------- +2021-11-19 07:44:17 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:44:17 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:44:17 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:44:17 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:44:17 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:44:17 [DEBUG] --------------------------------------------- +2021-11-19 07:44:17 [INFO] --------------------------------- +2021-11-19 07:44:17 [INFO] ------ File list to check: ------ +2021-11-19 07:44:17 [INFO] --------------------------------- +2021-11-19 07:44:17 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:44:18 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:44:18 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:44:18 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:44:18 [DEBUG]  +2021-11-19 07:44:18 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:44:18 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:44:18 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:44:18 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:44:18 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:44:18 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:44:18 [DEBUG]  +2021-11-19 07:44:18 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:44:18 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:44:18 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:44:18 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:44:18 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:44:18 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:44:18 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:44:18 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:44:18 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:44:18 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:44:18 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:44:18 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:44:18 [DEBUG]  +2021-11-19 07:44:18 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:44:18 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:44:18 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:44:18 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:44:18 [DEBUG]  +2021-11-19 07:44:18 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:44:18 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:44:18 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:44:18 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:44:18 [DEBUG]  +2021-11-19 07:44:18 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:44:18 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:44:18 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:44:18 [DEBUG]  +2021-11-19 07:44:18 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:44:18 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:44:18 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:44:18 [DEBUG]  +2021-11-19 07:44:19 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:44:19 [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 07:44:19 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:44:19 [DEBUG]  +2021-11-19 07:44:19 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:44:19 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:44:19 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:44:19 [DEBUG]  +2021-11-19 07:44:19 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:44:19 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:44:19 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:44:19 [DEBUG]  +2021-11-19 07:44:19 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:19 [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 07:44:19 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:19 [DEBUG]  +2021-11-19 07:44:19 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:19 [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 07:44:19 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:19 [DEBUG]  +2021-11-19 07:44:19 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:44:19 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:44:19 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:44:19 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:44:19 [DEBUG]  +2021-11-19 07:44:19 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:44:19 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:44:19 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:44:20 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:20 [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 07:44:20 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:20 [DEBUG]  +2021-11-19 07:44:20 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:21 [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 07:44:21 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:21 [DEBUG]  +2021-11-19 07:44:21 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:44:22 [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 07:44:22 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:44:22 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:44:22 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:44:22 [DEBUG]  +2021-11-19 07:44:22 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:44:23 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 07:44:23 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:44:23 [DEBUG]  +2021-11-19 07:44:23 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07: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 07:44:24 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07: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 07:44:24 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07: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 07:44:24 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07: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 07:44:24 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:44:24 [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 07:44:24 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:44:24 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 07:44:24 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:44:24 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 07:44:24 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:44:24 [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 07:44:24 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:44:24 [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 07:44:24 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:44:24 [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 07:44:24 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:44:24 [DEBUG]  +2021-11-19 07:44:24 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07: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 07:44:25 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:44:25 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07: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 07:44:26 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:44:26 [DEBUG]  +2021-11-19 07:44:26 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:44:27 [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 07:44:27 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:44:27 [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 07:44:27 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:44:27 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 07:44:27 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:44:27 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:44:27 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:44:27 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:44:27 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:44:27 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 07:44:27 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07: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 07:44:27 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07: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 07:44:27 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07: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 07:44:27 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07: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 07:44:27 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:44:27 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:44:27 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:44:27 [DEBUG]  +2021-11-19 07:44:27 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:28 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:44:28 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:44:28 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:44:28 [DEBUG]  +2021-11-19 07:44:29 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:44:29 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:44:29 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:44:29 [DEBUG]  +2021-11-19 07:44:29 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:44:29 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:44:29 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:44:29 [DEBUG]  +2021-11-19 07:44:29 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:44:29 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:44:29 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:44:29 [DEBUG]  +2021-11-19 07:44:29 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:44:29 [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 07:44:29 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:44:29 [DEBUG]  +2021-11-19 07:44:29 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:44:29 [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 07:44:29 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:44:29 [DEBUG]  +2021-11-19 07:44:29 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:44:29 [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 07:44:29 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:44:29 [DEBUG]  +2021-11-19 07:44:29 [INFO] ---------------------------------------------- +2021-11-19 07:44:29 [INFO] Successfully gathered list of files... +2021-11-19 07:44:29 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:44:29 [DEBUG] ------------------------------------ +2021-11-19 07:44:29 [DEBUG] ENV: +2021-11-19 07:44:29 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=6f179974387c +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.UjvGP3nWba +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 07:44:29 [DEBUG] ------------------------------------ +2021-11-19 07:44:29 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the ARM language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the BASH language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the CPP language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the CSS language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the DART language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the ENV language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:29 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:44:29 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:44:29 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:44:29 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:44:29 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:44:29 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:44:30 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:44:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:44:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:30 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:44:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:44:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:44:30 [DEBUG] Running linter for the GO language... +2021-11-19 07:44:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:44:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:44:30 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:44:30 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:44:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:44:30 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:44:30 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:44:30 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:44:30 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:44:30 [INFO]  +2021-11-19 07:44:30 [INFO] ---------------------------------------------- +2021-11-19 07:44:30 [INFO] ---------------------------------------------- +2021-11-19 07:44:30 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:44:30 [INFO] Linting [GO] files... +2021-11-19 07:44:30 [INFO] ---------------------------------------------- +2021-11-19 07:44:30 [INFO] ---------------------------------------------- +2021-11-19 07:44:30 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07: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 07:44:30 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:44:30 [INFO] --------------------------- +2021-11-19 07:44:30 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:44:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:31 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:44:31 [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 07:44:31 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:44:31 [INFO] --------------------------- +2021-11-19 07:44:31 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:44:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:32 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:44: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 07:44:32 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:44:32 [INFO] --------------------------- +2021-11-19 07:44:32 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:44:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:33 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:44:33 [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 07:44:33 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:44:33 [INFO] --------------------------- +2021-11-19 07:44:33 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 07:44:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:34 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 07:44: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 07:44:34 [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 07:44:34 [INFO] --------------------------- +2021-11-19 07:44:34 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 07:44:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:35 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 07:44: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 07:44: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: go +2021-11-19 07:44:35 [INFO] --------------------------- +2021-11-19 07:44:35 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 07:44:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 07:44: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 07:44:36 [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: go +2021-11-19 07:44:36 [INFO] --------------------------- +2021-11-19 07:44:36 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 07:44:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:37 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 07:44: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 07:44:37 [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: go +2021-11-19 07:44:37 [INFO] --------------------------- +2021-11-19 07:44:37 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 07:44:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:38 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 07:44:38 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:44:38 [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: go +2021-11-19 07:44:38 [INFO] --------------------------- +2021-11-19 07:44:38 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 07:44:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:39 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 07:44:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:44:39 [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: go +2021-11-19 07:44:39 [INFO] --------------------------- +2021-11-19 07:44:39 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 07:44:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 07: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 07: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: go +2021-11-19 07:44:40 [INFO] --------------------------- +2021-11-19 07:44:40 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 07:44:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 07: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 07:44:41 [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: go +2021-11-19 07:44:41 [INFO] --------------------------- +2021-11-19 07:44:41 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 07:44:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 07: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 07:44: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: go +2021-11-19 07:44:42 [INFO] --------------------------- +2021-11-19 07:44:42 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 07:44:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:43 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 07:44: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 07:44:43 [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: go +2021-11-19 07:44:43 [INFO] --------------------------- +2021-11-19 07:44:43 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 07:44:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:44 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 07:44: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 07:44:44 [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: go +2021-11-19 07:44:44 [INFO] --------------------------- +2021-11-19 07:44:44 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 07:44:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 07:44: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 07:44:45 [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: go +2021-11-19 07:44:45 [INFO] --------------------------- +2021-11-19 07:44:45 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 07:44:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:47 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 07:44: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 07:44:47 [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: go +2021-11-19 07:44:47 [INFO] --------------------------- +2021-11-19 07:44:47 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 07:44:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:50 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 07:44:50 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 07:44:50 [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: go +2021-11-19 07:44:50 [INFO] --------------------------- +2021-11-19 07:44:50 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 07:44:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:51 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 07:44: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 07:44:51 [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: go +2021-11-19 07:44:51 [INFO] --------------------------- +2021-11-19 07:44:51 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 07:44:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:52 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 07:44: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 07:44:52 [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: go +2021-11-19 07:44:52 [INFO] --------------------------- +2021-11-19 07:44:52 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 07:44:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 07:44: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 07:44:54 [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: go +2021-11-19 07:44:54 [INFO] --------------------------- +2021-11-19 07:44:54 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 07:44:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 07:44:55 [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 07:44:55 [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: go +2021-11-19 07:44:55 [INFO] --------------------------- +2021-11-19 07:44:55 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 07:44:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:55 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 07:44:55 [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 07:44:55 [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: go +2021-11-19 07:44:55 [INFO] --------------------------- +2021-11-19 07:44:55 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 07:44:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:56 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 07:44:56 [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 07:44:56 [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: go +2021-11-19 07:44:56 [INFO] --------------------------- +2021-11-19 07:44:56 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 07:44:57 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:57 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:57 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:57 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 07:44:57 [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 07:44:57 [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: go +2021-11-19 07:44:57 [INFO] --------------------------- +2021-11-19 07:44:57 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 07:44:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:58 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 07:44:58 [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 07:44:58 [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: go +2021-11-19 07:44:58 [INFO] --------------------------- +2021-11-19 07:44:58 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 07:44:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:44:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:44:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:44:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 07:44:59 [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 07:44:59 [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: go +2021-11-19 07:44:59 [INFO] --------------------------- +2021-11-19 07:44:59 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 07:45:00 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:00 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:00 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:00 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:00 [INFO] --------------------------- +2021-11-19 07:45:00 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 07:45:01 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:01 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:01 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:01 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:01 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 07:45:01 [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 07:45:01 [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: go +2021-11-19 07:45:01 [INFO] --------------------------- +2021-11-19 07:45:01 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 07:45:02 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:02 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:02 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:02 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 07:45: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 07:45:02 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:02 [INFO] --------------------------- +2021-11-19 07:45:02 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 07:45:03 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:03 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:03 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:03 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:03 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 07:45: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 07:45:03 [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: go +2021-11-19 07:45:03 [INFO] --------------------------- +2021-11-19 07:45:03 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 07:45:04 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:04 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:04 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:04 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:04 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:04 [INFO] --------------------------- +2021-11-19 07:45:04 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 07:45:05 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:05 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:05 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:05 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:05 [INFO] --------------------------- +2021-11-19 07:45:05 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 07:45:06 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:06 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:06 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:06 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 07:45:06 [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 07:45:06 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:06 [INFO] --------------------------- +2021-11-19 07:45:06 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 07:45:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:07 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 07:45:07 [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 07:45:07 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:07 [INFO] --------------------------- +2021-11-19 07:45:07 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 07:45:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:08 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 07:45:08 [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 07:45:08 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:08 [INFO] --------------------------- +2021-11-19 07:45:08 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 07:45:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:09 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 07:45:09 [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 07:45:09 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:09 [INFO] --------------------------- +2021-11-19 07:45:09 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 07:45:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:10 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 07:45: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 07:45:10 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:10 [INFO] --------------------------- +2021-11-19 07:45:10 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 07:45:11 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:11 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:11 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:11 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 07:45: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 07:45:11 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:11 [INFO] --------------------------- +2021-11-19 07:45:11 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 07:45:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:12 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 07:45:12 [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 07:45:12 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:12 [INFO] --------------------------- +2021-11-19 07:45:12 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 07:45:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:12 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 07:45:12 [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 07:45:12 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:12 [INFO] --------------------------- +2021-11-19 07:45:12 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 07:45:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:13 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 07:45:13 [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 07:45:13 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:13 [INFO] --------------------------- +2021-11-19 07:45:13 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 07:45:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:14 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 07:45:14 [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 07:45:14 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:14 [INFO] --------------------------- +2021-11-19 07:45:14 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 07:45:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:15 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 07:45:15 [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 07:45:15 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:15 [INFO] --------------------------- +2021-11-19 07:45:15 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 07:45:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:15 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 07:45: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 07:45:15 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:16 [INFO] --------------------------- +2021-11-19 07:45:16 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 07:45:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:16 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 07:45:16 [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 07:45:16 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:16 [INFO] --------------------------- +2021-11-19 07:45:16 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 07:45:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:17 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 07:45: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 07:45:17 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:17 [INFO] --------------------------- +2021-11-19 07:45:17 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 07:45:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:18 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 07:45:18 [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 07:45:18 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:18 [INFO] --------------------------- +2021-11-19 07:45:18 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 07:45:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:19 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 07:45:19 [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 07:45:19 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:19 [INFO] --------------------------- +2021-11-19 07:45:19 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 07:45:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:20 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 07:45:20 [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 07:45:20 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:20 [INFO] --------------------------- +2021-11-19 07:45:20 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 07:45:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:20 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:21 [INFO] --------------------------- +2021-11-19 07:45:21 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 07:45:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:21 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 07:45: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 07:45:21 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:21 [INFO] --------------------------- +2021-11-19 07:45:21 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 07:45:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:23 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 07:45:23 [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 07:45:23 [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: go +2021-11-19 07:45:23 [INFO] --------------------------- +2021-11-19 07:45:23 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 07:45:24 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:24 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:24 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:24 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 07:45:24 [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 07:45:24 [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: go +2021-11-19 07:45:24 [INFO] --------------------------- +2021-11-19 07:45:24 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 07:45:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:25 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 07:45:25 [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 07:45:25 [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: go +2021-11-19 07:45:25 [INFO] --------------------------- +2021-11-19 07:45:25 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 07:45:26 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:26 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:26 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:26 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 07:45:26 [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 07:45:26 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:26 [INFO] --------------------------- +2021-11-19 07:45:26 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 07:45:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:27 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 07:45:27 [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 07:45:27 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:27 [INFO] --------------------------- +2021-11-19 07:45:27 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 07:45:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:28 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 07:45:28 [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 07:45:28 [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: go +2021-11-19 07:45:28 [INFO] --------------------------- +2021-11-19 07:45:28 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 07:45:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:29 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 07:45:29 [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 07:45:29 [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: go +2021-11-19 07:45:29 [INFO] --------------------------- +2021-11-19 07:45:29 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 07:45:30 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:30 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:30 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:30 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 07:45:30 [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 07:45:30 [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: go +2021-11-19 07:45:30 [INFO] --------------------------- +2021-11-19 07:45:30 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 07:45:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:31 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 07:45:31 [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 07:45:31 [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: go +2021-11-19 07:45:31 [INFO] --------------------------- +2021-11-19 07:45:31 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 07:45:31 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:31 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:31 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:31 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:31 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 07:45:31 [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 07:45:31 [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: go +2021-11-19 07:45:31 [INFO] --------------------------- +2021-11-19 07:45:31 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 07:45:32 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:32 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:32 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:32 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 07:45:32 [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 07:45:32 [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: go +2021-11-19 07:45:32 [INFO] --------------------------- +2021-11-19 07:45:32 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 07:45:33 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:33 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:33 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:33 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 07:45:33 [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 07:45:33 [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: go +2021-11-19 07:45:33 [INFO] --------------------------- +2021-11-19 07:45:33 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 07:45:34 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:34 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:34 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:34 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 07:45:34 [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 07:45:34 [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: go +2021-11-19 07:45:34 [INFO] --------------------------- +2021-11-19 07:45:34 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 07:45:35 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:35 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:35 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:35 [INFO] --------------------------- +2021-11-19 07:45:35 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 07:45:36 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:36 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:36 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:36 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 07:45:36 [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 07:45:36 [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: go +2021-11-19 07:45:36 [INFO] --------------------------- +2021-11-19 07:45:36 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 07:45:37 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:37 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:37 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:37 [INFO] --------------------------- +2021-11-19 07:45:37 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 07:45:38 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:38 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:38 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:38 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 07:45:38 [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 07:45:38 [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: go +2021-11-19 07:45:38 [INFO] --------------------------- +2021-11-19 07:45:38 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 07:45:39 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:39 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:39 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 07:45:39 [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 07:45:39 [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: go +2021-11-19 07:45:39 [INFO] --------------------------- +2021-11-19 07:45:39 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 07:45:40 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:40 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:40 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:40 [INFO] --------------------------- +2021-11-19 07:45:40 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 07:45:41 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:41 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:41 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:41 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:41 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 07:45:41 [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 07:45:41 [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: go +2021-11-19 07:45:41 [INFO] --------------------------- +2021-11-19 07:45:41 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 07:45:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:42 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 07:45:42 [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 07:45:42 [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: go +2021-11-19 07:45:42 [INFO] --------------------------- +2021-11-19 07:45:42 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 07:45:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:42 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 07:45:43 [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 07:45:43 [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: go +2021-11-19 07:45:43 [INFO] --------------------------- +2021-11-19 07:45:43 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 07:45:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:43 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 07:45:43 [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 07:45:43 [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: go +2021-11-19 07:45:43 [INFO] --------------------------- +2021-11-19 07:45:43 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 07:45:44 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:44 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 07:45:44 [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 07:45:44 [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: go +2021-11-19 07:45:44 [INFO] --------------------------- +2021-11-19 07:45:44 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 07:45:45 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:45 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:45 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 07:45:45 [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 07:45:45 [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: go +2021-11-19 07:45:45 [INFO] --------------------------- +2021-11-19 07:45:45 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 07:45:46 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:46 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:46 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 07:45: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 07:45: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: go +2021-11-19 07:45:47 [INFO] --------------------------- +2021-11-19 07:45:47 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 07:45:47 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:47 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:47 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:47 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 07:45:47 [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 07:45:47 [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: go +2021-11-19 07:45:47 [INFO] --------------------------- +2021-11-19 07:45:48 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 07:45:48 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:48 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:48 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:48 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 07:45:49 [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 07:45:49 [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: go +2021-11-19 07:45:49 [INFO] --------------------------- +2021-11-19 07:45:49 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 07:45:49 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:49 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:50 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 07:45:50 [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 07:45:50 [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: go +2021-11-19 07:45:50 [INFO] --------------------------- +2021-11-19 07:45:50 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 07:45:50 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:50 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:50 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:50 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:50 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 07:45: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 07:45:50 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:50 [INFO] --------------------------- +2021-11-19 07:45:50 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 07:45:51 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:51 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:51 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:51 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 07:45: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 07:45:51 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:51 [INFO] --------------------------- +2021-11-19 07:45:51 [INFO] File:[/tmp/lint/option.go] +2021-11-19 07:45:52 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:52 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:52 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:52 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 07:45:52 [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 07:45:52 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:52 [INFO] --------------------------- +2021-11-19 07:45:52 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 07:45:53 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:53 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:53 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:53 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 07:45:54 [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 07:45:54 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:54 [INFO] --------------------------- +2021-11-19 07:45:54 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 07:45:54 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:54 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:54 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:54 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 07:45: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 07:45:54 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:54 [INFO] --------------------------- +2021-11-19 07:45:54 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 07:45:55 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:55 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:55 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:55 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:55 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 07:45:55 [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 07:45:55 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:55 [INFO] --------------------------- +2021-11-19 07:45:56 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 07:45:56 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:56 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:56 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:56 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 07:45:56 [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 07:45:56 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:56 [INFO] --------------------------- +2021-11-19 07:45:56 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 07:45:58 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:58 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:58 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:58 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 07:45: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 07:45:58 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:58 [INFO] --------------------------- +2021-11-19 07:45:58 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 07:45:59 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:45:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:45:59 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:59 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:45:59 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 07:45: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 07:45:59 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:45:59 [INFO] --------------------------- +2021-11-19 07:45:59 [INFO] File:[/tmp/lint/server.go] +2021-11-19 07:46:00 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:00 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:00 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:00 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 07:46:00 [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 07:46:00 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:00 [INFO] --------------------------- +2021-11-19 07:46:00 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 07:46:01 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:01 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:01 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:01 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:01 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 07:46: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 07:46:01 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:01 [INFO] --------------------------- +2021-11-19 07:46:01 [INFO] File:[/tmp/lint/service.go] +2021-11-19 07:46:02 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:02 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:02 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:02 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 07:46:02 [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 07:46:02 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:02 [INFO] --------------------------- +2021-11-19 07:46:02 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 07:46:03 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:03 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:03 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:03 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:03 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 07:46:03 [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 07:46:03 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:03 [INFO] --------------------------- +2021-11-19 07:46:03 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 07:46:04 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:04 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:04 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:04 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:04 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 07:46:04 [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 07:46:04 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:04 [INFO] --------------------------- +2021-11-19 07:46:04 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 07:46:05 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:05 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:05 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:05 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 07:46: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 07:46:05 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:05 [INFO] --------------------------- +2021-11-19 07:46:05 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 07:46:06 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:06 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:06 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:06 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 07:46: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 07:46:06 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:06 [INFO] --------------------------- +2021-11-19 07:46:06 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 07:46:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:07 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 07:46:07 [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 07:46:07 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:07 [INFO] --------------------------- +2021-11-19 07:46:07 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 07:46:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:08 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 07:46:08 [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 07:46:08 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:08 [INFO] --------------------------- +2021-11-19 07:46:08 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 07:46:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:08 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 07:46: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 07:46:08 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:09 [INFO] --------------------------- +2021-11-19 07:46:09 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 07:46:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:09 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 07:46:10 [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 07:46:10 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:10 [INFO] --------------------------- +2021-11-19 07:46:10 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 07:46:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:10 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 07:46:10 [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 07:46:10 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:10 [INFO] --------------------------- +2021-11-19 07:46:10 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 07:46:11 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:11 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:11 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:11 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 07:46:11 [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 07:46:11 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:11 [INFO] --------------------------- +2021-11-19 07:46:11 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 07:46:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:12 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 07:46:12 [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 07:46:12 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:12 [INFO] --------------------------- +2021-11-19 07:46:12 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 07:46:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:13 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 07:46:13 [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 07:46:13 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:13 [INFO] --------------------------- +2021-11-19 07:46:13 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 07:46:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:14 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 07:46: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 07:46:14 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:46:14 [INFO] --------------------------- +2021-11-19 07:46:14 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 07:46:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 07:46: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 07:46: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: go +2021-11-19 07:46:15 [INFO] --------------------------- +2021-11-19 07:46:15 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 07:46:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 07:46: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 07:46: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: go +2021-11-19 07:46:16 [INFO] --------------------------- +2021-11-19 07:46:16 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 07:46:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:17 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 07:46:17 [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 07:46:17 [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: go +2021-11-19 07:46:17 [INFO] --------------------------- +2021-11-19 07:46:17 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 07:46:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:46:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:46:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:46:18 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the GROOVY language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the HTML language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the JAVA language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the JSCPD language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the JSON language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the JSONC language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the JSX language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the LATEX language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the LUA language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 07:46:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:18 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PERL language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the R language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the RAKU language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the RUBY language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the STATES language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the SQL language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the TEKTON language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the TSX language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the XML language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [DEBUG] Running linter for the YAML language... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 07:46:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:46:19 [INFO] ---------------------------------------------- +2021-11-19 07:46:19 [INFO] ---------------------------------------------- +2021-11-19 07:46:19 [INFO] The script has completed +2021-11-19 07:46:19 [INFO] ---------------------------------------------- +2021-11-19 07:46:19 [INFO] ---------------------------------------------- +2021-11-19 07:46:19 [ERROR] ERRORS FOUND in GO:[109] +2021-11-19 07:46:19 [DEBUG] Calling Multi-Status API for GO with status error +2021-11-19 07:46:19 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:46:48 [INFO] - Image Creation Date:[] +2021-11-19 07:46:48 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:46:48 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:46:48 [INFO] - https://github.com/github/super-linter +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [DEBUG] --------------------------------------------- +2021-11-19 07:46:48 [DEBUG] Linter Version Info: +2021-11-19 07:46:49 [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 07:46:49 [DEBUG] --------------------------------------------- +2021-11-19 07:46:49 [INFO] -------------------------------------------- +2021-11-19 07:46:49 [INFO] Gathering GitHub information... +2021-11-19 07:46:49 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:46:49 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:46:49 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:46:49 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:46:49 [INFO] -------------------------------------------- +2021-11-19 07:46:49 [INFO] Gathering user validation information... +2021-11-19 07:46:49 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:46:49 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:46:49 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:46:49 [DEBUG] Defining variables for GO linter... +2021-11-19 07:46:49 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:46:49 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:46:49 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:46:49 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:46:49 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 07:46:49 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 07:46:49 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 07:46:49 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 07:46:50 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [R] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 07:46:50 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:46:50 [DEBUG] --------------------------------------------- +2021-11-19 07:46:50 [DEBUG] Runner:[root] +2021-11-19 07:46:50 [DEBUG] ENV: +2021-11-19 07:46:50 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=3b507bf04745 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.InsmAgHsoN +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 07:46:50 [DEBUG] --------------------------------------------- +2021-11-19 07:46:50 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:50 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:46:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:50 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:46:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:46:50 [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 07:46:50 [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 07:46:50 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:46:50 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:46:50 [DEBUG] Loading rules for ARM... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:50 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:46:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:50 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:46:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:46:50 [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 07:46:50 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:46:50 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:46:50 [DEBUG] Loading rules for BASH... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:46:50 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:46:50 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:46:50 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:50 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:46:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:46:51 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:46:51 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:46:51 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for CPP... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:46:51 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:46:51 [DEBUG] Loading rules for CSS... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:46:51 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for DART... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for DART... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:46:51 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:46:51 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:46:51 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:46:51 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for ENV... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:46:51 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:46:51 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:46:51 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:46: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 07:46:52 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:46:52 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for GO... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for GO... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:46:52 [INFO] ---------------------------------------------- +2021-11-19 07:46:52 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:46:52 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:46:52 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:46:52 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:46: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 07:46:52 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:46:52 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for HTML... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:46:52 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JAVA... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:46:52 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46:52 [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 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46:52 [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 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:46:52 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JSON... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:46:52 [DEBUG] Loading rules for JSONC... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:46:52 [DEBUG] Loading rules for JSX... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:53 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:46:53 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:46:53 [DEBUG] Loading rules for LATEX... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:46:53 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for LUA... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:46:53 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:46: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 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:46:53 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:46:53 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:46:53 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for PERL... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:46:53 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:46:54 [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 07:46:54 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:46:54 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:46:54 [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 07:46:54 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:46:54 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:46:54 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:46:54 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:46:54 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:46:54 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:46:54 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:46:54 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:46:54 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:46:55 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:46:55 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for R... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for R... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:46:55 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for RAKU... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:46:55 [DEBUG] Loading rules for RUBY... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:46: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 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:46:55 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:46:55 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:46:55 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:46:55 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:46:55 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:46:55 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:46:55 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:46:55 [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 07:46:55 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:46:55 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for STATES... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:46:55 [DEBUG] Loading rules for SQL... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:46:55 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:46:55 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:46:55 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:46:55 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:46:55 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:46:55 [DEBUG] Loading rules for TSX... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:55 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:56 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:56 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:56 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:56 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:46:56 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:46:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:56 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:56 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:56 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:56 [DEBUG] Loading rules for XML... +2021-11-19 07:46:56 [DEBUG] Getting linter rules for XML... +2021-11-19 07:46:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:46:56 [DEBUG] Loading rules for YAML... +2021-11-19 07:46:56 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:46:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:56 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:46:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:56 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:46:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:46: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 07:46: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 07:46:56 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:46:56 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:46:56 [DEBUG] ENV:[browser] +2021-11-19 07:46:56 [DEBUG] ENV:[es6] +2021-11-19 07:46:56 [DEBUG] ENV:[jest] +2021-11-19 07:46:56 [DEBUG] ENV:[browser] +2021-11-19 07:46:56 [DEBUG] ENV:[es6] +2021-11-19 07:46:56 [DEBUG] ENV:[jest] +2021-11-19 07:46:56 [DEBUG] --- Linter commands --- +2021-11-19 07:46:56 [DEBUG] ----------------------- +2021-11-19 07:46:56 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:46:56 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:46:56 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:46:56 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:46:56 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:46:56 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:46:56 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:46:56 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:46:56 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:46:56 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:46: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 07:46:56 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:46:56 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:46:56 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:46:56 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:46:56 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:46:56 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:46:56 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:46:56 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:46:56 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:46:56 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:46:56 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:46:56 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:46:56 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:46:56 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:46:56 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:46:56 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:46:56 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:46:56 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:46:56 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:46:56 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:46:56 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:46:56 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:46:56 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:46:56 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:46:56 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:46: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 07:46:56 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:46:56 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:46:56 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:46:56 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:46:56 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:46:56 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:46:56 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:46:56 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46: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 07:46:56 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:46:56 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:46:57 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:46:57 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:46:57 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:46:57 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:46:57 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:46:57 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:46:57 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:46:57 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:46:57 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:46:57 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:46:57 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:46:57 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:46:57 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:46:57 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:46:57 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:46:57 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:46:57 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:46:57 [DEBUG] --------------------------------------------- +2021-11-19 07:46:57 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:46:57 [DEBUG] Building file list... +2021-11-19 07:46:57 [DEBUG] Validate all code base: true... +2021-11-19 07:46:57 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:46:57 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:46:57 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:46:57 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:46:57 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:46:57 [DEBUG] ---------------------------------------------- +2021-11-19 07:46: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 07:46:57 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:46:57 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:46:58 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:46:58 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:46:58 [DEBUG] ----------------------- +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:46:58 [DEBUG] --------------------------------------------- +2021-11-19 07:46:58 [INFO] --------------------------------- +2021-11-19 07:46:58 [INFO] ------ File list to check: ------ +2021-11-19 07:46:58 [INFO] --------------------------------- +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:46:58 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:46:58 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:46:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:46:58 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:46:58 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47:00 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:47:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:47:00 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:47:00 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:47:02 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:47:02 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:47:02 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:47:02 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:47:02 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:47:02 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:47:04 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:47:04 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:47:04 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:47:04 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:47: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 07:47:05 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07:47: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 07:47:05 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:47: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 07:47:05 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:47: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 07:47:06 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:47: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 07:47:06 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:47: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 07:47:06 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [INFO] ---------------------------------------------- +2021-11-19 07:47:06 [INFO] Successfully gathered list of files... +2021-11-19 07:47:06 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:47:06 [DEBUG] ------------------------------------ +2021-11-19 07:47:06 [DEBUG] ENV: +2021-11-19 07:47: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_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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=3b507bf04745 +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.InsmAgHsoN +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 07:47:06 [DEBUG] ------------------------------------ +2021-11-19 07:47:06 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the ARM language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the BASH language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the CPP language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the CSS language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the DART language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the ENV language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:47:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:47:07 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:47:07 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:47:07 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:47:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:47:07 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the GO language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:47:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:47:07 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:47:07 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:47:07 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:47:07 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:47:07 [INFO]  +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:47:07 [INFO] Linting [GO] files... +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:47: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 07:47:07 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:07 [INFO] --------------------------- +2021-11-19 07:47:07 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:47:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:47:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:47:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:08 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:47: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 07:47:08 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:08 [INFO] --------------------------- +2021-11-19 07:47:08 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:47:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:47:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:47:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:09 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:47:09 [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 07:47:09 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:09 [INFO] --------------------------- +2021-11-19 07:47:09 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:47:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:47:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:47:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:10 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:47:10 [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 07:47:10 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:10 [INFO] --------------------------- +2021-11-19 07:47:10 [INFO] File:[/tmp/lint/errors/errors.go] +super-linter Log +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 07:46:46 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 07:46:47 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 07:46:48 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 07:46:48 [INFO] - Image Creation Date:[] +2021-11-19 07:46:48 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:46:48 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [INFO] The Super-Linter source code can be found at: +2021-11-19 07:46:48 [INFO] - https://github.com/github/super-linter +2021-11-19 07:46:48 [INFO] --------------------------------------------- +2021-11-19 07:46:48 [DEBUG] --------------------------------------------- +2021-11-19 07:46:48 [DEBUG] Linter Version Info: +2021-11-19 07:46:49 [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 07:46:49 [DEBUG] --------------------------------------------- +2021-11-19 07:46:49 [INFO] -------------------------------------------- +2021-11-19 07:46:49 [INFO] Gathering GitHub information... +2021-11-19 07:46:49 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 07:46:49 [INFO] bypassing GitHub Actions variables... +2021-11-19 07:46:49 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 07:46:49 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 07:46:49 [INFO] -------------------------------------------- +2021-11-19 07:46:49 [INFO] Gathering user validation information... +2021-11-19 07:46:49 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 07:46:49 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 07:46:49 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 07:46:49 [DEBUG] Defining variables for GO linter... +2021-11-19 07:46:49 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 07:46:49 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 07:46:49 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 07:46:49 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 07:46:49 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 07:46:49 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 07:46:49 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 07:46:49 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 07:46:50 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Validating [GO] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [R] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 07:46:50 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 07:46:50 [DEBUG] --- DEBUG INFO --- +2021-11-19 07:46:50 [DEBUG] --------------------------------------------- +2021-11-19 07:46:50 [DEBUG] Runner:[root] +2021-11-19 07:46:50 [DEBUG] ENV: +2021-11-19 07:46:50 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=3b507bf04745 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.InsmAgHsoN +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 07:46:50 [DEBUG] --------------------------------------------- +2021-11-19 07:46:50 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:50 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 07:46:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:50 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 07:46:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 07:46:50 [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 07:46:50 [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 07:46:50 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 07:46:50 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 07:46:50 [DEBUG] Loading rules for ARM... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for ARM... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:50 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 07:46:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:50 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 07:46:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 07:46:50 [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 07:46:50 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 07:46:50 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 07:46:50 [DEBUG] Loading rules for BASH... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for BASH... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 07:46:50 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 07:46:50 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 07:46:50 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 07:46:50 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 07:46:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:50 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 07:46:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:50 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 07:46:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 07:46:51 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for CLOJURE... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 07:46:51 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 07:46:51 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for CPP... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CPP... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 07:46:51 [DEBUG] Loading rules for CSHARP... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 07:46:51 [DEBUG] Loading rules for CSS... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for CSS... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 07:46:51 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for DART... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for DART... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 07:46:51 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 07:46:51 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 07:46:51 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 07:46:51 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for ENV... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for ENV... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 07:46:51 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 07:46:51 [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 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 07:46:51 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:51 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 07:46:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:51 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 07:46:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 07:46:51 [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 07:46:51 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 07:46:51 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 07:46:51 [DEBUG] Loading rules for GHERKIN... +2021-11-19 07:46:51 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 07:46:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:51 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 07:46:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 07:46: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 07:46:52 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 07:46:52 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for GO... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for GO... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:46:52 [INFO] ---------------------------------------------- +2021-11-19 07:46:52 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 07:46:52 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 07:46:52 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 07:46:52 [DEBUG] Loading rules for GROOVY... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 07:46: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 07:46:52 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 07:46:52 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for HTML... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for HTML... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 07:46:52 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JAVA... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JAVA... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 07:46:52 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46:52 [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 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46:52 [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 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:52 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JSCPD... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:52 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 07:46:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:52 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 07:46:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 07:46:52 [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 07:46:52 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 07:46:52 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 07:46:52 [DEBUG] Loading rules for JSON... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSON... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 07:46:52 [DEBUG] Loading rules for JSONC... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSONC... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 07:46:52 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 07:46:52 [DEBUG] Loading rules for JSX... +2021-11-19 07:46:52 [DEBUG] Getting linter rules for JSX... +2021-11-19 07:46:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:52 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:53 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 07:46:53 [DEBUG] Loading rules for KOTLIN... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 07:46:53 [DEBUG] Loading rules for LATEX... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for LATEX... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 07:46:53 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for LUA... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for LUA... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 07:46:53 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 07:46: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 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 07:46:53 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 07:46:53 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for OPENAPI... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:53 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 07:46:53 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 07:46:53 [DEBUG] Loading rules for PERL... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for PERL... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 07:46:53 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 07:46:53 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 07:46:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:53 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 07:46:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:53 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 07:46:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:53 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 07:46:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 07:46:54 [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 07:46:54 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 07:46:54 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 07:46:54 [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 07:46:54 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 07:46:54 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 07:46:54 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 07:46:54 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 07:46:54 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 07:46:54 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 07:46:54 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 07:46:54 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 07:46:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 07:46: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 07:46:54 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 07:46:54 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 07:46:54 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 07:46:54 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 07:46:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:54 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 07:46:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:54 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 07:46:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:54 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 07:46:55 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 07:46:55 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for R... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for R... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 07:46:55 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for RAKU... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RAKU... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 07:46:55 [DEBUG] Loading rules for RUBY... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUBY... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 07:46: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 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 07:46:55 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for RUST_2015... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 07:46:55 [DEBUG] Loading rules for RUST_2018... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 07:46:55 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 07:46:55 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 07:46:55 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 07:46:55 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 07:46:55 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 07:46:55 [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 07:46:55 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 07:46:55 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for STATES... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for STATES... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 07:46:55 [DEBUG] Loading rules for SQL... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SQL... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 07:46:55 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 07:46:55 [DEBUG] Loading rules for TEKTON... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 07:46:55 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 07:46:55 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 07:46:55 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 07:46:55 [DEBUG] Loading rules for TSX... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TSX... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:55 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 07:46:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:55 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:55 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:55 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:55 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 07:46:55 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 07:46:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:56 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:56 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:56 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:56 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 07:46:56 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 07:46:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:56 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 07:46:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:56 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 07:46: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 07:46: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 07:46:56 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 07:46:56 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 07:46:56 [DEBUG] Loading rules for XML... +2021-11-19 07:46:56 [DEBUG] Getting linter rules for XML... +2021-11-19 07:46:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 07:46:56 [DEBUG] Loading rules for YAML... +2021-11-19 07:46:56 [DEBUG] Getting linter rules for YAML... +2021-11-19 07:46:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 07:46:56 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 07:46:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 07:46:56 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 07:46:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 07:46:56 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 07:46:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 07:46: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 07:46: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 07:46:56 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 07:46:56 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 07:46:56 [DEBUG] ENV:[browser] +2021-11-19 07:46:56 [DEBUG] ENV:[es6] +2021-11-19 07:46:56 [DEBUG] ENV:[jest] +2021-11-19 07:46:56 [DEBUG] ENV:[browser] +2021-11-19 07:46:56 [DEBUG] ENV:[es6] +2021-11-19 07:46:56 [DEBUG] ENV:[jest] +2021-11-19 07:46:56 [DEBUG] --- Linter commands --- +2021-11-19 07:46:56 [DEBUG] ----------------------- +2021-11-19 07:46:56 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 07:46:56 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 07:46:56 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 07:46:56 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 07:46:56 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 07:46:56 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 07:46:56 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 07:46:56 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 07:46:56 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 07:46:56 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 07:46: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 07:46:56 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 07:46:56 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 07:46:56 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 07:46:56 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 07:46:56 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 07:46:56 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 07:46:56 [DEBUG] Linter key: R, command: lintr +2021-11-19 07:46:56 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 07:46:56 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 07:46:56 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:46:56 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 07:46:56 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 07:46:56 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 07:46:56 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 07:46:56 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 07:46:56 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 07:46:56 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 07:46:56 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 07:46:56 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 07:46:56 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 07:46:56 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 07:46:56 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 07:46:56 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 07:46:56 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 07:46:56 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 07:46: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 07:46:56 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 07:46:56 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 07:46:56 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 07:46:56 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 07:46:56 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 07:46:56 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 07:46:56 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 07:46:56 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46: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 07:46:56 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 07:46:56 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 07:46:56 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 07:46:57 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 07:46:57 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 07:46:57 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 07:46:57 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 07:46:57 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 07:46:57 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 07:46:57 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 07:46:57 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 07:46:57 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 07:46:57 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 07:46:57 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 07:46:57 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 07:46:57 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 07:46:57 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 07:46:57 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 07:46:57 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 07:46:57 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 07:46:57 [DEBUG] --------------------------------------------- +2021-11-19 07:46:57 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 07:46:57 [DEBUG] Building file list... +2021-11-19 07:46:57 [DEBUG] Validate all code base: true... +2021-11-19 07:46:57 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 07:46:57 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 07:46:57 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 07:46:57 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 07:46:57 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 07:46:57 [DEBUG] ---------------------------------------------- +2021-11-19 07:46: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 07:46:57 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 07:46:57 [DEBUG] Loading the files list that Git ignores... +2021-11-19 07:46:58 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 07:46:58 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 07:46:58 [DEBUG] ----------------------- +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 07:46:58 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 07:46:58 [DEBUG] --------------------------------------------- +2021-11-19 07:46:58 [INFO] --------------------------------- +2021-11-19 07:46:58 [INFO] ------ File list to check: ------ +2021-11-19 07:46:58 [INFO] --------------------------------- +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 07:46:58 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 07:46:58 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 07:46:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 07:46:58 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 07:46:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 07:46:58 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 07:46:58 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 07:46:58 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 07:46:58 [DEBUG]  +2021-11-19 07:46:58 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:46:59 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 07:46:59 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:46:59 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:46: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 07:46:59 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:46:59 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47:00 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 07:47:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 07:47: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 07:47:00 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 07:47:00 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 07:47:00 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 07:47:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 07:47:00 [DEBUG]  +2021-11-19 07:47:00 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 07:47:01 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 07:47:01 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 07:47: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 07:47:01 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 07:47:01 [DEBUG]  +2021-11-19 07:47:01 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:47:02 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 07:47:02 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 07:47:02 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 07:47:02 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 07:47:02 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 07:47:02 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 07:47:02 [DEBUG]  +2021-11-19 07:47:02 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:47: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 07:47:02 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 07:47: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 07:47:03 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 07:47:03 [DEBUG]  +2021-11-19 07:47:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:47:04 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 07:47:04 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:47:04 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 07:47:04 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 07:47: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 07:47:04 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 07:47:04 [DEBUG]  +2021-11-19 07:47:04 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:47: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 07:47:05 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 07:47: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 07:47:05 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 07:47: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 07:47:05 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 07:47:05 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 07:47:05 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 07:47:05 [DEBUG]  +2021-11-19 07:47:05 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 07:47:06 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 07:47:06 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 07:47: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 07:47:06 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 07:47: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 07:47:06 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 07:47: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 07:47:06 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 07:47:06 [DEBUG]  +2021-11-19 07:47:06 [INFO] ---------------------------------------------- +2021-11-19 07:47:06 [INFO] Successfully gathered list of files... +2021-11-19 07:47:06 [DEBUG] --- ENV (before running linters) --- +2021-11-19 07:47:06 [DEBUG] ------------------------------------ +2021-11-19 07:47:06 [DEBUG] ENV: +2021-11-19 07:47: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_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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=3b507bf04745 +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.InsmAgHsoN +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 07:47:06 [DEBUG] ------------------------------------ +2021-11-19 07:47:06 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the ARM language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the BASH language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 07:47:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:06 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the CPP language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the CSHARP language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the CSS language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the DART language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the ENV language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 07:47:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 07:47:07 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 07:47:07 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 07:47:07 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 07:47:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 07:47:07 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 07:47:07 [DEBUG] Running linter for the GO language... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 07:47:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 07:47:07 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 07:47:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 07:47:07 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 07:47:07 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 07:47:07 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 07:47:07 [DEBUG] Workspace path: /tmp/lint +2021-11-19 07:47:07 [INFO]  +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 07:47:07 [INFO] Linting [GO] files... +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [INFO] ---------------------------------------------- +2021-11-19 07:47:07 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 07:47: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 07:47:07 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:07 [INFO] --------------------------- +2021-11-19 07:47:07 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 07:47:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:47:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:47:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:08 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 07:47: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 07:47:08 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:08 [INFO] --------------------------- +2021-11-19 07:47:08 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 07:47:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:47:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:47:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:09 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 07:47:09 [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 07:47:09 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:09 [INFO] --------------------------- +2021-11-19 07:47:09 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 07:47:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 07:47:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 07:47:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 07:47:10 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 07:47:10 [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 07:47:10 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 07:47:10 [INFO] --------------------------- +2021-11-19 07:47:10 [INFO] File:[/tmp/lint/errors/errors.go] +super-linter Log +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 08:00:24 [INFO] - Image Creation Date:[] +2021-11-19 08:00:24 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:00:24 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [INFO] The Super-Linter source code can be found at: +2021-11-19 08:00:24 [INFO] - https://github.com/github/super-linter +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] Linter Version Info: +2021-11-19 08:00:24 [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 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [INFO] -------------------------------------------- +2021-11-19 08:00:24 [INFO] Gathering GitHub information... +2021-11-19 08:00:24 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 08:00:24 [INFO] bypassing GitHub Actions variables... +2021-11-19 08:00:24 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 08:00:24 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 08:00:24 [INFO] -------------------------------------------- +2021-11-19 08:00:24 [INFO] Gathering user validation information... +2021-11-19 08:00:24 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 08:00:24 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 08:00:24 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 08:00:24 [DEBUG] Defining variables for GO linter... +2021-11-19 08:00:24 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 08:00:24 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 08:00:24 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 08:00:24 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 08:00:24 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 08:00:24 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Validating [GO] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [R] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 08:00:24 [DEBUG] --- DEBUG INFO --- +2021-11-19 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] Runner:[root] +2021-11-19 08:00:24 [DEBUG] ENV: +2021-11-19 08:00:24 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=8cab6a2c3d8e +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.Q1UuWtvmCm +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 08:00:24 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 08:00:24 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:24 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 08:00:24 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 08:00:25 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for ARM... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for ARM... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 08:00:25 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for BASH... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for BASH... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 08:00:25 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 08:00:25 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 08:00:25 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 08:00:25 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for CLOJURE... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 08:00:25 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 08:00:25 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for CPP... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CPP... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 08:00:25 [DEBUG] Loading rules for CSHARP... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 08:00:25 [DEBUG] Loading rules for CSS... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CSS... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 08:00:25 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for DART... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for DART... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 08:00:25 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 08:00:25 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 08:00:25 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 08:00:26 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for ENV... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for ENV... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 08:00:26 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 08:00:26 [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 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 08:00:26 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 08:00:26 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GHERKIN... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 08:00:26 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GO... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GO... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:00:26 [INFO] ---------------------------------------------- +2021-11-19 08:00:26 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 08:00:26 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:00:26 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:00:26 [DEBUG] Loading rules for GROOVY... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 08:00:26 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for HTML... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for HTML... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 08:00:26 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JAVA... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JAVA... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 08:00:26 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:26 [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 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:26 [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 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JSCPD... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 08:00:27 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for JSON... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for JSON... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 08:00:27 [DEBUG] Loading rules for JSONC... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for JSONC... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 08:00:27 [DEBUG] Loading rules for JSX... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for JSX... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:27 [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 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:27 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:00:27 [DEBUG] Loading rules for KOTLIN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 08:00:27 [DEBUG] Loading rules for LATEX... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for LATEX... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 08:00:27 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for LUA... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for LUA... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 08:00:27 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 08:00:27 [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 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 08:00:27 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 08:00:27 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for OPENAPI... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 08:00:27 [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 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 08:00:27 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for PERL... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PERL... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 08:00:27 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 08:00:27 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 08:00:27 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 08:00:28 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 08:00:28 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:00:28 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 08:00:28 [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 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 08:00:28 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for R... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for R... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 08:00:28 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for RAKU... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RAKU... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 08:00:28 [DEBUG] Loading rules for RUBY... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUBY... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 08:00:28 [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 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 08:00:28 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for RUST_2015... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 08:00:28 [DEBUG] Loading rules for RUST_2018... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 08:00:28 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 08:00:29 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 08:00:29 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 08:00:29 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 08:00:29 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 08:00:29 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for STATES... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for STATES... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 08:00:29 [DEBUG] Loading rules for SQL... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SQL... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 08:00:29 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 08:00:29 [DEBUG] Loading rules for TEKTON... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 08:00:29 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 08:00:29 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 08:00:29 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 08:00:29 [DEBUG] Loading rules for TSX... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TSX... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for XML... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for XML... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 08:00:29 [DEBUG] Loading rules for YAML... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for YAML... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 08:00:29 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 08:00:30 [DEBUG] ENV:[browser] +2021-11-19 08:00:30 [DEBUG] ENV:[es6] +2021-11-19 08:00:30 [DEBUG] ENV:[jest] +2021-11-19 08:00:30 [DEBUG] ENV:[browser] +2021-11-19 08:00:30 [DEBUG] ENV:[es6] +2021-11-19 08:00:30 [DEBUG] ENV:[jest] +2021-11-19 08:00:30 [DEBUG] --- Linter commands --- +2021-11-19 08:00:30 [DEBUG] ----------------------- +2021-11-19 08:00:30 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 08:00:30 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 08:00:30 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 08:00:30 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 08:00:30 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 08:00:30 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 08:00:30 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 08:00:30 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 08:00:30 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 08:00:30 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 08:00:30 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 08:00:30 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 08:00:30 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 08:00:30 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 08:00:30 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 08:00:30 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 08:00:30 [DEBUG] Linter key: R, command: lintr +2021-11-19 08:00:30 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 08:00:30 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 08:00:30 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 08:00:30 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 08:00:30 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 08:00:30 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 08:00:30 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 08:00:30 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 08:00:30 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 08:00:30 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 08:00:30 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 08:00:30 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 08:00:30 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 08:00:30 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 08:00:30 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 08:00:30 [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 08:00:30 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 08:00:30 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 08:00:30 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 08:00:30 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 08:00:30 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 08:00:30 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 08:00:30 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 08:00:30 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [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 08:00:30 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 08:00:30 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:00:30 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 08:00:30 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 08:00:30 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 08:00:30 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 08:00:30 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 08:00:30 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 08:00:30 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 08:00:30 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 08:00:30 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 08:00:30 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 08:00:30 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 08:00:30 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 08:00:30 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 08:00:30 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 08:00:30 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 08:00:30 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 08:00:30 [DEBUG] --------------------------------------------- +2021-11-19 08:00:30 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 08:00:30 [DEBUG] Building file list... +2021-11-19 08:00:30 [DEBUG] Validate all code base: true... +2021-11-19 08:00:30 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 08:00:30 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 08:00:30 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 08:00:30 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 08:00:30 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 08:00:30 [DEBUG] ---------------------------------------------- +2021-11-19 08:00:30 [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 08:00:31 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 08:00:31 [DEBUG] Loading the files list that Git ignores... +2021-11-19 08:00:32 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 08:00:32 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 08:00:32 [DEBUG] ----------------------- +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 08:00:32 [DEBUG] --------------------------------------------- +2021-11-19 08:00:32 [INFO] --------------------------------- +2021-11-19 08:00:32 [INFO] ------ File list to check: ------ +2021-11-19 08:00:32 [INFO] --------------------------------- +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 08:00:32 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 08:00:32 [DEBUG]  +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 08:00:32 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 08:00:32 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 08:00:32 [DEBUG]  +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 08:00:32 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 08:00:32 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 08:00:32 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 08:00:32 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 08:00:32 [DEBUG]  +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 08:00:34 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 08:00:36 [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 08:00:36 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 08:00:36 [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 08:00:37 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 08:00:37 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 08:00:37 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 08:00:37 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 08:00:37 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:00:38 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 08:00:38 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:00:40 [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 08:00:40 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:00:40 [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 08:00:40 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 08:00:40 [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 08:00:40 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [INFO] ---------------------------------------------- +2021-11-19 08:00:40 [INFO] Successfully gathered list of files... +2021-11-19 08:00:40 [DEBUG] --- ENV (before running linters) --- +2021-11-19 08:00:40 [DEBUG] ------------------------------------ +2021-11-19 08:00:40 [DEBUG] ENV: +2021-11-19 08:00:40 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=8cab6a2c3d8e +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.Q1UuWtvmCm +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 08:00:40 [DEBUG] ------------------------------------ +2021-11-19 08:00:40 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the ARM language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the BASH language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CPP language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CSHARP language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CSS language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the DART language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the ENV language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 08:00:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 08:00:41 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 08:00:41 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 08:00:41 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 08:00:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 08:00:41 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the GO language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 08:00:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 08:00:41 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 08:00:41 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 08:00:41 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 08:00:41 [DEBUG] Workspace path: /tmp/lint +2021-11-19 08:00:41 [INFO]  +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 08:00:41 [INFO] Linting [GO] files... +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 08:00: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 08:00:41 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:41 [INFO] --------------------------- +2021-11-19 08:00:41 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 08:00:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:00:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:00:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:42 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 08:00:42 [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 08:00:42 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:42 [INFO] --------------------------- +2021-11-19 08:00:42 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 08:00:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:00:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:00:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:43 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 08:00:43 [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 08:00:43 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:43 [INFO] --------------------------- +2021-11-19 08:00:43 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 08:00:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:00:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:00:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:44 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 08:00: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 08:00:44 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:44 [INFO] --------------------------- +2021-11-19 08:00:44 [INFO] File:[/tmp/lint/errors/errors.go] +super-linter Log +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 08:00:23 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 08:00:24 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 08:00:24 [INFO] - Image Creation Date:[] +2021-11-19 08:00:24 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:00:24 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [INFO] The Super-Linter source code can be found at: +2021-11-19 08:00:24 [INFO] - https://github.com/github/super-linter +2021-11-19 08:00:24 [INFO] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] Linter Version Info: +2021-11-19 08:00:24 [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 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [INFO] -------------------------------------------- +2021-11-19 08:00:24 [INFO] Gathering GitHub information... +2021-11-19 08:00:24 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 08:00:24 [INFO] bypassing GitHub Actions variables... +2021-11-19 08:00:24 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 08:00:24 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 08:00:24 [INFO] -------------------------------------------- +2021-11-19 08:00:24 [INFO] Gathering user validation information... +2021-11-19 08:00:24 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 08:00:24 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 08:00:24 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 08:00:24 [DEBUG] Defining variables for GO linter... +2021-11-19 08:00:24 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 08:00:24 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 08:00:24 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 08:00:24 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 08:00:24 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 08:00:24 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Validating [GO] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [R] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 08:00:24 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 08:00:24 [DEBUG] --- DEBUG INFO --- +2021-11-19 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] Runner:[root] +2021-11-19 08:00:24 [DEBUG] ENV: +2021-11-19 08:00:24 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=8cab6a2c3d8e +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.Q1UuWtvmCm +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 08:00:24 [DEBUG] --------------------------------------------- +2021-11-19 08:00:24 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 08:00:24 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 08:00:24 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:24 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 08:00:24 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 08:00:25 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for ARM... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for ARM... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 08:00:25 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for BASH... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for BASH... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 08:00:25 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 08:00:25 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 08:00:25 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 08:00:25 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for CLOJURE... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 08:00:25 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 08:00:25 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for CPP... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CPP... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 08:00:25 [DEBUG] Loading rules for CSHARP... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 08:00:25 [DEBUG] Loading rules for CSS... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for CSS... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 08:00:25 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for DART... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for DART... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 08:00:25 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 08:00:25 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 08:00:25 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:25 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 08:00:25 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 08:00:25 [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 08:00:25 [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 08:00:25 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 08:00:25 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 08:00:25 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 08:00:25 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 08:00:25 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:25 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 08:00:25 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:25 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 08:00:26 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for ENV... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for ENV... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 08:00:26 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 08:00:26 [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 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 08:00:26 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 08:00:26 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GHERKIN... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 08:00:26 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GO... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GO... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:00:26 [INFO] ---------------------------------------------- +2021-11-19 08:00:26 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 08:00:26 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:00:26 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:00:26 [DEBUG] Loading rules for GROOVY... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 08:00:26 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for HTML... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for HTML... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 08:00:26 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JAVA... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JAVA... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 08:00:26 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:26 [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 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 08:00:26 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:26 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:00:26 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:26 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:26 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:26 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:26 [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 08:00:26 [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 08:00:26 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:26 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:26 [DEBUG] Loading rules for JSCPD... +2021-11-19 08:00:26 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 08:00:27 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for JSON... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for JSON... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 08:00:27 [DEBUG] Loading rules for JSONC... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for JSONC... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 08:00:27 [DEBUG] Loading rules for JSX... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for JSX... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:27 [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 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:27 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:00:27 [DEBUG] Loading rules for KOTLIN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 08:00:27 [DEBUG] Loading rules for LATEX... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for LATEX... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 08:00:27 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for LUA... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for LUA... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 08:00:27 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 08:00:27 [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 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 08:00:27 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 08:00:27 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for OPENAPI... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 08:00:27 [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 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 08:00:27 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for PERL... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PERL... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 08:00:27 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 08:00:27 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 08:00:27 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:27 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 08:00:27 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:27 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 08:00:27 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 08:00:27 [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 08:00:27 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 08:00:27 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 08:00:27 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 08:00:27 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 08:00:27 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:27 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 08:00:28 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 08:00:28 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:00:28 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 08:00:28 [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 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 08:00:28 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 08:00:28 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for R... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for R... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 08:00:28 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for RAKU... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RAKU... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 08:00:28 [DEBUG] Loading rules for RUBY... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUBY... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:28 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 08:00:28 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:28 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 08:00:28 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 08:00:28 [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 08:00:28 [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 08:00:28 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 08:00:28 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 08:00:28 [DEBUG] Loading rules for RUST_2015... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 08:00:28 [DEBUG] Loading rules for RUST_2018... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 08:00:28 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:28 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 08:00:28 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 08:00:28 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 08:00:28 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 08:00:29 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 08:00:29 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 08:00:29 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 08:00:29 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 08:00:29 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for STATES... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for STATES... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 08:00:29 [DEBUG] Loading rules for SQL... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SQL... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 08:00:29 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 08:00:29 [DEBUG] Loading rules for TEKTON... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 08:00:29 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 08:00:29 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 08:00:29 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 08:00:29 [DEBUG] Loading rules for TSX... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TSX... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:00:29 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:00:29 [DEBUG] Loading rules for XML... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for XML... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 08:00:29 [DEBUG] Loading rules for YAML... +2021-11-19 08:00:29 [DEBUG] Getting linter rules for YAML... +2021-11-19 08:00:29 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:00:29 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 08:00:29 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:00:29 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 08:00:29 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:00:29 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 08:00:29 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 08:00:29 [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 08:00:29 [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 08:00:29 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 08:00:29 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 08:00:30 [DEBUG] ENV:[browser] +2021-11-19 08:00:30 [DEBUG] ENV:[es6] +2021-11-19 08:00:30 [DEBUG] ENV:[jest] +2021-11-19 08:00:30 [DEBUG] ENV:[browser] +2021-11-19 08:00:30 [DEBUG] ENV:[es6] +2021-11-19 08:00:30 [DEBUG] ENV:[jest] +2021-11-19 08:00:30 [DEBUG] --- Linter commands --- +2021-11-19 08:00:30 [DEBUG] ----------------------- +2021-11-19 08:00:30 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 08:00:30 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 08:00:30 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 08:00:30 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 08:00:30 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 08:00:30 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 08:00:30 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 08:00:30 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 08:00:30 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 08:00:30 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 08:00:30 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 08:00:30 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 08:00:30 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 08:00:30 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 08:00:30 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 08:00:30 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 08:00:30 [DEBUG] Linter key: R, command: lintr +2021-11-19 08:00:30 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 08:00:30 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 08:00:30 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 08:00:30 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 08:00:30 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 08:00:30 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 08:00:30 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 08:00:30 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 08:00:30 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 08:00:30 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 08:00:30 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 08:00:30 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 08:00:30 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 08:00:30 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 08:00:30 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 08:00:30 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 08:00:30 [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 08:00:30 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 08:00:30 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 08:00:30 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 08:00:30 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 08:00:30 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 08:00:30 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 08:00:30 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 08:00:30 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [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 08:00:30 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 08:00:30 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 08:00:30 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:00:30 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 08:00:30 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 08:00:30 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 08:00:30 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 08:00:30 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 08:00:30 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 08:00:30 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 08:00:30 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 08:00:30 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 08:00:30 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 08:00:30 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 08:00:30 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 08:00:30 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 08:00:30 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 08:00:30 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 08:00:30 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 08:00:30 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 08:00:30 [DEBUG] --------------------------------------------- +2021-11-19 08:00:30 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 08:00:30 [DEBUG] Building file list... +2021-11-19 08:00:30 [DEBUG] Validate all code base: true... +2021-11-19 08:00:30 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 08:00:30 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 08:00:30 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 08:00:30 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 08:00:30 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 08:00:30 [DEBUG] ---------------------------------------------- +2021-11-19 08:00:30 [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 08:00:31 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 08:00:31 [DEBUG] Loading the files list that Git ignores... +2021-11-19 08:00:32 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 08:00:32 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 08:00:32 [DEBUG] ----------------------- +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 08:00:32 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 08:00:32 [DEBUG] --------------------------------------------- +2021-11-19 08:00:32 [INFO] --------------------------------- +2021-11-19 08:00:32 [INFO] ------ File list to check: ------ +2021-11-19 08:00:32 [INFO] --------------------------------- +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 08:00:32 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 08:00:32 [DEBUG]  +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 08:00:32 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 08:00:32 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 08:00:32 [DEBUG]  +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 08:00:32 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 08:00:32 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 08:00:32 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 08:00:32 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 08:00:32 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 08:00:32 [DEBUG]  +2021-11-19 08:00:32 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 08:00:32 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 08:00:32 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:00:33 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 08:00:33 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:33 [DEBUG]  +2021-11-19 08:00:33 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:33 [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 08:00:33 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 08:00:34 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:34 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 08:00:34 [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 08:00:34 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 08:00:34 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:00:35 [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 08:00:35 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 08:00:35 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 08:00:35 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 08:00:35 [DEBUG]  +2021-11-19 08:00:35 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:00:36 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 08:00:36 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 08:00:36 [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 08:00:36 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 08:00:36 [DEBUG]  +2021-11-19 08:00:36 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 08:00:36 [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 08:00:37 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 08:00:37 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 08:00:37 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 08:00:37 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 08:00:37 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 08:00:37 [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 08:00:37 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:37 [DEBUG]  +2021-11-19 08:00:37 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 08:00:38 [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 08:00:38 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:00:38 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 08:00:38 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:00:38 [DEBUG]  +2021-11-19 08:00:38 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:39 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:00:39 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 08:00:39 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 08:00:39 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:00:40 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 08:00:40 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:00:40 [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 08:00:40 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:00:40 [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 08:00:40 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 08:00:40 [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 08:00:40 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 08:00:40 [DEBUG]  +2021-11-19 08:00:40 [INFO] ---------------------------------------------- +2021-11-19 08:00:40 [INFO] Successfully gathered list of files... +2021-11-19 08:00:40 [DEBUG] --- ENV (before running linters) --- +2021-11-19 08:00:40 [DEBUG] ------------------------------------ +2021-11-19 08:00:40 [DEBUG] ENV: +2021-11-19 08:00:40 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=8cab6a2c3d8e +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.Q1UuWtvmCm +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 08:00:40 [DEBUG] ------------------------------------ +2021-11-19 08:00:40 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the ARM language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the BASH language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CPP language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CSHARP language... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 08:00:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:40 [DEBUG] Running linter for the CSS language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the DART language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the ENV language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 08:00:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 08:00:41 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 08:00:41 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 08:00:41 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 08:00:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 08:00:41 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:00:41 [DEBUG] Running linter for the GO language... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 08:00:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 08:00:41 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 08:00:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 08:00:41 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 08:00:41 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 08:00:41 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 08:00:41 [DEBUG] Workspace path: /tmp/lint +2021-11-19 08:00:41 [INFO]  +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 08:00:41 [INFO] Linting [GO] files... +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [INFO] ---------------------------------------------- +2021-11-19 08:00:41 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 08:00: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 08:00:41 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:41 [INFO] --------------------------- +2021-11-19 08:00:41 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 08:00:42 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:00:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:00:42 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:42 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:42 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 08:00:42 [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 08:00:42 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:42 [INFO] --------------------------- +2021-11-19 08:00:42 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 08:00:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:00:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:00:43 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:43 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:43 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 08:00:43 [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 08:00:43 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:43 [INFO] --------------------------- +2021-11-19 08:00:43 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 08:00:43 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:00:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:00:44 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:44 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:00:44 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 08:00: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 08:00:44 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:00:44 [INFO] --------------------------- +2021-11-19 08:00:44 [INFO] File:[/tmp/lint/errors/errors.go] +super-linter Log +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 08:03:03 [INFO] - Image Creation Date:[] +2021-11-19 08:03:03 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:03 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [INFO] The Super-Linter source code can be found at: +2021-11-19 08:03:03 [INFO] - https://github.com/github/super-linter +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] Linter Version Info: +2021-11-19 08:03: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 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [INFO] -------------------------------------------- +2021-11-19 08:03:03 [INFO] Gathering GitHub information... +2021-11-19 08:03:03 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 08:03:03 [INFO] bypassing GitHub Actions variables... +2021-11-19 08:03:03 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 08:03:03 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 08:03:03 [INFO] -------------------------------------------- +2021-11-19 08:03:03 [INFO] Gathering user validation information... +2021-11-19 08:03:03 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 08:03:03 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 08:03:03 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 08:03:03 [DEBUG] Defining variables for GO linter... +2021-11-19 08:03:03 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 08:03:03 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 08:03:03 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 08:03:03 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 08:03:03 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 08:03:03 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Validating [GO] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [R] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 08:03:03 [DEBUG] --- DEBUG INFO --- +2021-11-19 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] Runner:[root] +2021-11-19 08:03:03 [DEBUG] ENV: +2021-11-19 08:03:03 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=0f21047600f6 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.HD5EgaMFnl +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 08:03:03 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 08:03:04 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for ARM... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for ARM... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 08:03:04 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for BASH... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for BASH... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 08:03:04 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 08:03:04 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 08:03:04 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 08:03:04 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for CLOJURE... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 08:03:04 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 08:03:04 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for CPP... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CPP... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 08:03:04 [DEBUG] Loading rules for CSHARP... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 08:03:04 [DEBUG] Loading rules for CSS... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CSS... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 08:03:04 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for DART... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for DART... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 08:03:04 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 08:03:04 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 08:03:04 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 08:03:04 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for ENV... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for ENV... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 08:03:04 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 08:03:04 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 08:03:04 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for GHERKIN... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 08:03:05 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for GO... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for GO... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:05 [INFO] ---------------------------------------------- +2021-11-19 08:03:05 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 08:03:05 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:05 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:05 [DEBUG] Loading rules for GROOVY... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 08:03:05 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for HTML... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for HTML... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 08:03:05 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JAVA... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JAVA... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 08:03:05 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JSCPD... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 08:03:05 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JSON... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSON... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 08:03:05 [DEBUG] Loading rules for JSONC... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSONC... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 08:03:05 [DEBUG] Loading rules for JSX... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSX... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:05 [DEBUG] Loading rules for KOTLIN... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 08:03:05 [DEBUG] Loading rules for LATEX... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for LATEX... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 08:03:05 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for LUA... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for LUA... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 08:03:05 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 08:03:05 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 08:03:05 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for OPENAPI... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 08:03:05 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for PERL... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for PERL... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 08:03:06 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 08:03:06 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 08:03:06 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 08:03:06 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:06 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 08:03:06 [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 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 08:03:06 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for R... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for R... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 08:03:06 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for RAKU... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RAKU... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 08:03:06 [DEBUG] Loading rules for RUBY... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUBY... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 08:03:06 [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 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 08:03:06 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for RUST_2015... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 08:03:06 [DEBUG] Loading rules for RUST_2018... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 08:03:06 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 08:03:06 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 08:03:07 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 08:03:07 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:07 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 08:03:07 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for STATES... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for STATES... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 08:03:07 [DEBUG] Loading rules for SQL... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SQL... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 08:03:07 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 08:03:07 [DEBUG] Loading rules for TEKTON... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 08:03:07 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 08:03:07 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 08:03:07 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 08:03:07 [DEBUG] Loading rules for TSX... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TSX... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for XML... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for XML... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 08:03:07 [DEBUG] Loading rules for YAML... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for YAML... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 08:03:07 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 08:03:08 [DEBUG] ENV:[browser] +2021-11-19 08:03:08 [DEBUG] ENV:[es6] +2021-11-19 08:03:08 [DEBUG] ENV:[jest] +2021-11-19 08:03:08 [DEBUG] ENV:[browser] +2021-11-19 08:03:08 [DEBUG] ENV:[es6] +2021-11-19 08:03:08 [DEBUG] ENV:[jest] +2021-11-19 08:03:08 [DEBUG] --- Linter commands --- +2021-11-19 08:03:08 [DEBUG] ----------------------- +2021-11-19 08:03:08 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 08:03:08 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 08:03:08 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 08:03:08 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 08:03:08 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 08:03:08 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 08:03:08 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 08:03:08 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 08:03:08 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 08:03:08 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 08:03:08 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 08:03:08 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 08:03:08 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 08:03:08 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 08:03:08 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 08:03:08 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 08:03:08 [DEBUG] Linter key: R, command: lintr +2021-11-19 08:03:08 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 08:03:08 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 08:03:08 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 08:03:08 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 08:03:08 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 08:03:08 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 08:03:08 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 08:03:08 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 08:03:08 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 08:03:08 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 08:03:08 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 08:03:08 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 08:03:08 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 08:03:08 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 08:03:08 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 08:03:08 [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 08:03:08 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 08:03:08 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 08:03:08 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 08:03:08 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 08:03:08 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 08:03:08 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 08:03:08 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 08:03:08 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [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 08:03:08 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 08:03:08 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:08 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 08:03:08 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 08:03:08 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 08:03:08 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 08:03:08 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 08:03:08 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 08:03:08 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 08:03:08 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 08:03:08 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 08:03:08 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 08:03:08 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 08:03:08 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 08:03:08 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 08:03:08 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 08:03:08 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 08:03:08 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 08:03:08 [DEBUG] --------------------------------------------- +2021-11-19 08:03:08 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 08:03:08 [DEBUG] Building file list... +2021-11-19 08:03:08 [DEBUG] Validate all code base: true... +2021-11-19 08:03:08 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 08:03:08 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 08:03:08 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 08:03:08 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 08:03:08 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 08:03:08 [DEBUG] ---------------------------------------------- +2021-11-19 08:03:08 [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 08:03:08 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 08:03:08 [DEBUG] Loading the files list that Git ignores... +2021-11-19 08:03:09 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 08:03:09 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 08:03:09 [DEBUG] ----------------------- +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 08:03:09 [DEBUG] --------------------------------------------- +2021-11-19 08:03:09 [INFO] --------------------------------- +2021-11-19 08:03:09 [INFO] ------ File list to check: ------ +2021-11-19 08:03:09 [INFO] --------------------------------- +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 08:03:09 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 08:03:09 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 08:03:09 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 08:03:09 [DEBUG]  +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 08:03:09 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 08:03:09 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 08:03:09 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 08:03:09 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 08:03:09 [DEBUG]  +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 08:03:09 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 08:03:09 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 08:03:09 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 08:03:09 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 08:03:09 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 08:03:09 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 08:03:09 [DEBUG]  +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 08:03:11 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:03:11 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 08:03:11 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:03:13 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 08:03:15 [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 08:03:15 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 08:03:15 [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 08:03:15 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:03:16 [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 08:03:16 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:16 [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 08:03:16 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 08:03:16 [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 08:03:16 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [INFO] ---------------------------------------------- +2021-11-19 08:03:16 [INFO] Successfully gathered list of files... +2021-11-19 08:03:16 [DEBUG] --- ENV (before running linters) --- +2021-11-19 08:03:16 [DEBUG] ------------------------------------ +2021-11-19 08:03:16 [DEBUG] ENV: +2021-11-19 08:03:16 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=0f21047600f6 +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.HD5EgaMFnl +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 08:03:16 [DEBUG] ------------------------------------ +2021-11-19 08:03:16 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the ARM language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the BASH language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CPP language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CSHARP language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CSS language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the DART language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the ENV language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 08:03:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 08:03:17 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 08:03:17 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 08:03:17 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 08:03:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 08:03:17 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the GO language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 08:03:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 08:03:17 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 08:03:17 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 08:03:17 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 08:03:17 [DEBUG] Workspace path: /tmp/lint +2021-11-19 08:03:17 [INFO]  +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 08:03:17 [INFO] Linting [GO] files... +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 08:03: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 08:03:17 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:17 [INFO] --------------------------- +2021-11-19 08:03:17 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 08:03:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:03:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:03:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:18 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 08:03:18 [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 08:03:18 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:18 [INFO] --------------------------- +2021-11-19 08:03:18 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 08:03:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:03:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:03:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 08:03:19 [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 08:03:19 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:19 [INFO] --------------------------- +2021-11-19 08:03:19 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 08:03:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:03:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:03:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 08:03:19 [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 08:03:19 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:19 [INFO] --------------------------- +2021-11-19 08:03:19 [INFO] File:[/tmp/lint/errors/errors.go] +super-linter Log +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 08:03:03 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 08:03:03 [INFO] - Image Creation Date:[] +2021-11-19 08:03:03 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:03 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [INFO] The Super-Linter source code can be found at: +2021-11-19 08:03:03 [INFO] - https://github.com/github/super-linter +2021-11-19 08:03:03 [INFO] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] Linter Version Info: +2021-11-19 08:03: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 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [INFO] -------------------------------------------- +2021-11-19 08:03:03 [INFO] Gathering GitHub information... +2021-11-19 08:03:03 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 08:03:03 [INFO] bypassing GitHub Actions variables... +2021-11-19 08:03:03 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 08:03:03 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 08:03:03 [INFO] -------------------------------------------- +2021-11-19 08:03:03 [INFO] Gathering user validation information... +2021-11-19 08:03:03 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 08:03:03 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 08:03:03 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 08:03:03 [DEBUG] Defining variables for GO linter... +2021-11-19 08:03:03 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 08:03:03 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 08:03:03 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 08:03:03 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 08:03:03 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 08:03:03 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Validating [GO] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [R] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 08:03:03 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 08:03:03 [DEBUG] --- DEBUG INFO --- +2021-11-19 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] Runner:[root] +2021-11-19 08:03:03 [DEBUG] ENV: +2021-11-19 08:03:03 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=0f21047600f6 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.HD5EgaMFnl +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 08:03:03 [DEBUG] --------------------------------------------- +2021-11-19 08:03:03 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 08:03:03 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 08:03:04 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for ARM... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for ARM... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 08:03:04 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for BASH... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for BASH... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 08:03:04 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 08:03:04 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 08:03:04 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 08:03:04 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for CLOJURE... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 08:03:04 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 08:03:04 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for CPP... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CPP... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 08:03:04 [DEBUG] Loading rules for CSHARP... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 08:03:04 [DEBUG] Loading rules for CSS... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for CSS... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 08:03:04 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for DART... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for DART... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 08:03:04 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 08:03:04 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 08:03:04 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 08:03:04 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for ENV... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for ENV... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 08:03:04 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 08:03:04 [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 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 08:03:04 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 08:03:04 [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 08:03:04 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 08:03:04 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 08:03:04 [DEBUG] Loading rules for GHERKIN... +2021-11-19 08:03:04 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 08:03:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:04 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 08:03:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:04 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 08:03:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:04 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 08:03:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 08:03:05 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for GO... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for GO... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:05 [INFO] ---------------------------------------------- +2021-11-19 08:03:05 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 08:03:05 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:05 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:05 [DEBUG] Loading rules for GROOVY... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 08:03:05 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for HTML... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for HTML... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 08:03:05 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JAVA... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JAVA... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 08:03:05 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JSCPD... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 08:03:05 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for JSON... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSON... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 08:03:05 [DEBUG] Loading rules for JSONC... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSONC... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 08:03:05 [DEBUG] Loading rules for JSX... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for JSX... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:05 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:05 [DEBUG] Loading rules for KOTLIN... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 08:03:05 [DEBUG] Loading rules for LATEX... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for LATEX... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 08:03:05 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for LUA... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for LUA... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 08:03:05 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 08:03:05 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 08:03:05 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for OPENAPI... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 08:03:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:05 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 08:03:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:05 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 08:03:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 08:03:05 [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 08:03:05 [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 08:03:05 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 08:03:05 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 08:03:05 [DEBUG] Loading rules for PERL... +2021-11-19 08:03:05 [DEBUG] Getting linter rules for PERL... +2021-11-19 08:03:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:05 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 08:03:06 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 08:03:06 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 08:03:06 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 08:03:06 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:06 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 08:03:06 [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 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 08:03:06 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 08:03:06 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for R... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for R... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 08:03:06 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for RAKU... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RAKU... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 08:03:06 [DEBUG] Loading rules for RUBY... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUBY... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 08:03:06 [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 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 08:03:06 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 08:03:06 [DEBUG] Loading rules for RUST_2015... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 08:03:06 [DEBUG] Loading rules for RUST_2018... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 08:03:06 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 08:03:06 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 08:03:06 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 08:03:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:06 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 08:03:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:06 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 08:03:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:06 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 08:03:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 08:03:06 [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 08:03:06 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 08:03:07 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 08:03:07 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:07 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 08:03:07 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for STATES... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for STATES... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 08:03:07 [DEBUG] Loading rules for SQL... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SQL... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 08:03:07 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 08:03:07 [DEBUG] Loading rules for TEKTON... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 08:03:07 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 08:03:07 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 08:03:07 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 08:03:07 [DEBUG] Loading rules for TSX... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TSX... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:07 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:07 [DEBUG] Loading rules for XML... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for XML... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 08:03:07 [DEBUG] Loading rules for YAML... +2021-11-19 08:03:07 [DEBUG] Getting linter rules for YAML... +2021-11-19 08:03:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:07 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 08:03:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:07 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 08:03:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:07 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 08:03:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 08:03:07 [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 08:03:07 [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 08:03:07 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 08:03:07 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 08:03:08 [DEBUG] ENV:[browser] +2021-11-19 08:03:08 [DEBUG] ENV:[es6] +2021-11-19 08:03:08 [DEBUG] ENV:[jest] +2021-11-19 08:03:08 [DEBUG] ENV:[browser] +2021-11-19 08:03:08 [DEBUG] ENV:[es6] +2021-11-19 08:03:08 [DEBUG] ENV:[jest] +2021-11-19 08:03:08 [DEBUG] --- Linter commands --- +2021-11-19 08:03:08 [DEBUG] ----------------------- +2021-11-19 08:03:08 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 08:03:08 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 08:03:08 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 08:03:08 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 08:03:08 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 08:03:08 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 08:03:08 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 08:03:08 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 08:03:08 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 08:03:08 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 08:03:08 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 08:03:08 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 08:03:08 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 08:03:08 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 08:03:08 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 08:03:08 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 08:03:08 [DEBUG] Linter key: R, command: lintr +2021-11-19 08:03:08 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 08:03:08 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 08:03:08 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 08:03:08 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 08:03:08 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 08:03:08 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 08:03:08 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 08:03:08 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 08:03:08 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 08:03:08 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 08:03:08 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 08:03:08 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 08:03:08 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 08:03:08 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 08:03:08 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 08:03:08 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 08:03:08 [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 08:03:08 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 08:03:08 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 08:03:08 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 08:03:08 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 08:03:08 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 08:03:08 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 08:03:08 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 08:03:08 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [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 08:03:08 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 08:03:08 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 08:03:08 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:08 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 08:03:08 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 08:03:08 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 08:03:08 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 08:03:08 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 08:03:08 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 08:03:08 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 08:03:08 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 08:03:08 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 08:03:08 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 08:03:08 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 08:03:08 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 08:03:08 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 08:03:08 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 08:03:08 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 08:03:08 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 08:03:08 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 08:03:08 [DEBUG] --------------------------------------------- +2021-11-19 08:03:08 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 08:03:08 [DEBUG] Building file list... +2021-11-19 08:03:08 [DEBUG] Validate all code base: true... +2021-11-19 08:03:08 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 08:03:08 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 08:03:08 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 08:03:08 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 08:03:08 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 08:03:08 [DEBUG] ---------------------------------------------- +2021-11-19 08:03:08 [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 08:03:08 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 08:03:08 [DEBUG] Loading the files list that Git ignores... +2021-11-19 08:03:09 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 08:03:09 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 08:03:09 [DEBUG] ----------------------- +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 08:03:09 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 08:03:09 [DEBUG] --------------------------------------------- +2021-11-19 08:03:09 [INFO] --------------------------------- +2021-11-19 08:03:09 [INFO] ------ File list to check: ------ +2021-11-19 08:03:09 [INFO] --------------------------------- +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 08:03:09 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 08:03:09 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 08:03:09 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 08:03:09 [DEBUG]  +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 08:03:09 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 08:03:09 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 08:03:09 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 08:03:09 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 08:03:09 [DEBUG]  +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 08:03:09 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 08:03:09 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 08:03:09 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 08:03:09 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 08:03:09 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 08:03:09 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 08:03:09 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 08:03:09 [DEBUG]  +2021-11-19 08:03:09 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:03:10 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 08:03:10 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:10 [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 08:03:10 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:10 [DEBUG]  +2021-11-19 08:03:10 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 08:03:11 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:11 [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 08:03:11 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:03:11 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 08:03:11 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:03:11 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 08:03:11 [DEBUG]  +2021-11-19 08:03:11 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:03:12 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 08:03:12 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 08:03:12 [DEBUG]  +2021-11-19 08:03:12 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 08:03:13 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 08:03:13 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 08:03:13 [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 08:03:13 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 08:03:13 [DEBUG]  +2021-11-19 08:03:13 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:03:13 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 08:03:14 [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 08:03:14 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 08:03:14 [DEBUG]  +2021-11-19 08:03:14 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 08:03:15 [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 08:03:15 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 08:03:15 [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 08:03:15 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 08:03:15 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 08:03:15 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 08:03:15 [DEBUG]  +2021-11-19 08:03:15 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:03:16 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 08:03:16 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:03:16 [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 08:03:16 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:16 [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 08:03:16 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 08:03:16 [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 08:03:16 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 08:03:16 [DEBUG]  +2021-11-19 08:03:16 [INFO] ---------------------------------------------- +2021-11-19 08:03:16 [INFO] Successfully gathered list of files... +2021-11-19 08:03:16 [DEBUG] --- ENV (before running linters) --- +2021-11-19 08:03:16 [DEBUG] ------------------------------------ +2021-11-19 08:03:16 [DEBUG] ENV: +2021-11-19 08:03:16 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=0f21047600f6 +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.HD5EgaMFnl +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 08:03:16 [DEBUG] ------------------------------------ +2021-11-19 08:03:16 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the ARM language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the BASH language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:16 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 08:03:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CPP language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CSHARP language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the CSS language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the DART language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the ENV language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 08:03:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 08:03:17 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 08:03:17 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 08:03:17 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 08:03:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 08:03:17 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:03:17 [DEBUG] Running linter for the GO language... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 08:03:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 08:03:17 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 08:03:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 08:03:17 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 08:03:17 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 08:03:17 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 08:03:17 [DEBUG] Workspace path: /tmp/lint +2021-11-19 08:03:17 [INFO]  +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 08:03:17 [INFO] Linting [GO] files... +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [INFO] ---------------------------------------------- +2021-11-19 08:03:17 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 08:03: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 08:03:17 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:17 [INFO] --------------------------- +2021-11-19 08:03:17 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 08:03:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:03:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:03:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:18 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 08:03:18 [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 08:03:18 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:18 [INFO] --------------------------- +2021-11-19 08:03:18 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 08:03:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:03:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:03:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 08:03:19 [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 08:03:19 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:19 [INFO] --------------------------- +2021-11-19 08:03:19 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 08:03:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:03:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:03:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:03:19 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 08:03:19 [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 08:03:19 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:03:19 [INFO] --------------------------- +2021-11-19 08:03:19 [INFO] File:[/tmp/lint/errors/errors.go] +super-linter Log +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 08:03:49 [INFO] - Image Creation Date:[] +2021-11-19 08:03:49 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:49 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [INFO] The Super-Linter source code can be found at: +2021-11-19 08:03:49 [INFO] - https://github.com/github/super-linter +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [DEBUG] --------------------------------------------- +2021-11-19 08:03:49 [DEBUG] Linter Version Info: +2021-11-19 08:03:49 [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 08:03:49 [DEBUG] --------------------------------------------- +2021-11-19 08:03:49 [INFO] -------------------------------------------- +2021-11-19 08:03:49 [INFO] Gathering GitHub information... +2021-11-19 08:03:49 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 08:03:49 [INFO] bypassing GitHub Actions variables... +2021-11-19 08:03:49 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 08:03:49 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 08:03:49 [INFO] -------------------------------------------- +2021-11-19 08:03:49 [INFO] Gathering user validation information... +2021-11-19 08:03:49 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 08:03:49 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 08:03:49 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 08:03:49 [DEBUG] Defining variables for GO linter... +2021-11-19 08:03:49 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 08:03:49 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 08:03:49 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 08:03:49 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 08:03:49 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 08:03:50 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Validating [GO] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [R] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 08:03:50 [DEBUG] --- DEBUG INFO --- +2021-11-19 08:03:50 [DEBUG] --------------------------------------------- +2021-11-19 08:03:50 [DEBUG] Runner:[root] +2021-11-19 08:03:50 [DEBUG] ENV: +2021-11-19 08:03:50 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=d19019a4bd98 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.BAlipweh13 +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 08:03:50 [DEBUG] --------------------------------------------- +2021-11-19 08:03:50 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 08:03:50 [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 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 08:03:50 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for ARM... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for ARM... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 08:03:50 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for BASH... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for BASH... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 08:03:50 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 08:03:50 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 08:03:50 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 08:03:50 [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 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 08:03:50 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for CLOJURE... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 08:03:50 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 08:03:50 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for CPP... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CPP... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 08:03:50 [DEBUG] Loading rules for CSHARP... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 08:03:50 [DEBUG] Loading rules for CSS... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CSS... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 08:03:51 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for DART... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for DART... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 08:03:51 [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 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 08:03:51 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 08:03:51 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 08:03:51 [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 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 08:03:51 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 08:03:51 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for ENV... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for ENV... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 08:03:51 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 08:03:51 [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 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 08:03:51 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 08:03:51 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GHERKIN... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 08:03:51 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GO... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GO... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:51 [INFO] ---------------------------------------------- +2021-11-19 08:03:51 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 08:03:51 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:51 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:51 [DEBUG] Loading rules for GROOVY... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 08:03:51 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for HTML... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for HTML... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 08:03:51 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for JAVA... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for JAVA... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 08:03:52 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JSCPD... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 08:03:52 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JSON... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSON... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 08:03:52 [DEBUG] Loading rules for JSONC... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSONC... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 08:03:52 [DEBUG] Loading rules for JSX... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSX... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:52 [DEBUG] Loading rules for KOTLIN... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 08:03:52 [DEBUG] Loading rules for LATEX... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for LATEX... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 08:03:52 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for LUA... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for LUA... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 08:03:52 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 08:03:52 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 08:03:52 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for OPENAPI... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 08:03:52 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for PERL... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PERL... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 08:03: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 08:03:53 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 08:03:53 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 08:03: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 08:03:53 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 08:03:53 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 08:03:53 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 08:03:53 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:53 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 08:03:53 [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 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 08:03:53 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for R... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for R... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 08:03:54 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for RAKU... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RAKU... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 08:03:54 [DEBUG] Loading rules for RUBY... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUBY... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 08:03: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 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 08:03:54 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for RUST_2015... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 08:03:54 [DEBUG] Loading rules for RUST_2018... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 08:03:54 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 08:03:54 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 08:03:54 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 08:03:54 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:54 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 08:03:54 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for STATES... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for STATES... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 08:03:54 [DEBUG] Loading rules for SQL... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SQL... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 08:03:54 [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 08:03:54 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 08:03:54 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 08:03:54 [DEBUG] Loading rules for TEKTON... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 08:03:54 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 08:03:54 [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 08:03:54 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 08:03:54 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 08:03:54 [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 08:03:54 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 08:03:54 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 08:03:54 [DEBUG] Loading rules for TSX... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TSX... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:54 [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 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:54 [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 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:55 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03: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 08:03: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 08:03:55 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:55 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:55 [DEBUG] Loading rules for XML... +2021-11-19 08:03:55 [DEBUG] Getting linter rules for XML... +2021-11-19 08:03:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:55 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 08:03:55 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 08:03:55 [DEBUG] Loading rules for YAML... +2021-11-19 08:03:55 [DEBUG] Getting linter rules for YAML... +2021-11-19 08:03:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:55 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 08:03:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:55 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 08:03:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:55 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 08:03:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 08:03: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 08:03: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 08:03:55 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 08:03:55 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 08:03:55 [DEBUG] ENV:[browser] +2021-11-19 08:03:55 [DEBUG] ENV:[es6] +2021-11-19 08:03:55 [DEBUG] ENV:[jest] +2021-11-19 08:03:55 [DEBUG] ENV:[browser] +2021-11-19 08:03:55 [DEBUG] ENV:[es6] +2021-11-19 08:03:55 [DEBUG] ENV:[jest] +2021-11-19 08:03:55 [DEBUG] --- Linter commands --- +2021-11-19 08:03:55 [DEBUG] ----------------------- +2021-11-19 08:03:55 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 08:03:55 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 08:03:55 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 08:03:55 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 08:03:55 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 08:03:55 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 08:03:55 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 08:03:55 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 08:03:55 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 08:03:55 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 08:03:55 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 08:03:55 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 08:03:55 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 08:03:55 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 08:03:55 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 08:03:55 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 08:03:55 [DEBUG] Linter key: R, command: lintr +2021-11-19 08:03:55 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 08:03:55 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 08:03:55 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 08:03:55 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 08:03:55 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 08:03:55 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 08:03:55 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 08:03:55 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 08:03:55 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 08:03:55 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 08:03:55 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 08:03:55 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 08:03:55 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 08:03:55 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 08:03:55 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 08:03:55 [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 08:03:55 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 08:03:55 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 08:03:55 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 08:03:55 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 08:03:55 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 08:03:55 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 08:03:55 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 08:03:55 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [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 08:03:55 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 08:03:55 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:55 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 08:03:55 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 08:03:55 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 08:03:55 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 08:03:55 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 08:03:55 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 08:03:55 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 08:03:55 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 08:03:55 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 08:03:55 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 08:03:55 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 08:03:55 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 08:03:55 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 08:03:55 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 08:03:55 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 08:03:56 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 08:03:56 [DEBUG] --------------------------------------------- +2021-11-19 08:03:56 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 08:03:56 [DEBUG] Building file list... +2021-11-19 08:03:56 [DEBUG] Validate all code base: true... +2021-11-19 08:03:56 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 08:03:56 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 08:03:56 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 08:03:56 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 08:03:56 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 08:03:56 [DEBUG] ---------------------------------------------- +2021-11-19 08:03: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 08:03:56 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 08:03:56 [DEBUG] Loading the files list that Git ignores... +2021-11-19 08:03:57 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 08:03:57 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 08:03:57 [DEBUG] ----------------------- +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 08:03:57 [DEBUG] --------------------------------------------- +2021-11-19 08:03:57 [INFO] --------------------------------- +2021-11-19 08:03:57 [INFO] ------ File list to check: ------ +2021-11-19 08:03:57 [INFO] --------------------------------- +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 08:03:57 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 08:03:57 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 08:03:57 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 08:03:57 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 08:03:57 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 08:03:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 08:04:01 [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 08:04:01 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 08:04:01 [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 08:04:01 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 08:04:01 [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 08:04:01 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 08:04:02 [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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 08:04:02 [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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:04: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 08:04:05 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:04: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 08:04:05 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 08:04: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 08:04:05 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [INFO] ---------------------------------------------- +2021-11-19 08:04:05 [INFO] Successfully gathered list of files... +2021-11-19 08:04:05 [DEBUG] --- ENV (before running linters) --- +2021-11-19 08:04:05 [DEBUG] ------------------------------------ +2021-11-19 08:04:05 [DEBUG] ENV: +2021-11-19 08:04: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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=d19019a4bd98 +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.BAlipweh13 +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 08:04:05 [DEBUG] ------------------------------------ +2021-11-19 08:04:05 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 08:04:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the ARM language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the BASH language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CPP language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CSHARP language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CSS language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the DART language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the ENV language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 08:04:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 08:04:06 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 08:04:06 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 08:04:06 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 08:04:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 08:04:06 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the GO language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 08:04:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 08:04:06 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 08:04:06 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 08:04:06 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 08:04:06 [DEBUG] Workspace path: /tmp/lint +2021-11-19 08:04:06 [INFO]  +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 08:04:06 [INFO] Linting [GO] files... +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 08:04:06 [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 08:04:06 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:06 [INFO] --------------------------- +2021-11-19 08:04:06 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 08:04:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:07 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 08:04: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 08:04:07 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:07 [INFO] --------------------------- +2021-11-19 08:04:07 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 08:04:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:08 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 08:04: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 08:04:08 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:08 [INFO] --------------------------- +2021-11-19 08:04:08 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 08:04:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:09 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 08:04:09 [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 08:04:09 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:09 [INFO] --------------------------- +2021-11-19 08:04:09 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 08:04:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 08:04: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 08:04:10 [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 08:04:10 [INFO] --------------------------- +2021-11-19 08:04:10 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 08:04:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 08:04: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 08:04:10 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:10 [INFO] --------------------------- +2021-11-19 08:04:10 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 08:04:11 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:11 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:11 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:11 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 08:04:11 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:11 [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: go +2021-11-19 08:04:11 [INFO] --------------------------- +2021-11-19 08:04:11 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 08:04:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:12 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 08:04:12 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:12 [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: go +2021-11-19 08:04:12 [INFO] --------------------------- +2021-11-19 08:04:12 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 08:04:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:13 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 08:04:13 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:13 [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: go +2021-11-19 08:04:13 [INFO] --------------------------- +2021-11-19 08:04:13 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 08:04:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:14 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 08:04:14 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:14 [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: go +2021-11-19 08:04:14 [INFO] --------------------------- +2021-11-19 08:04:14 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 08:04:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 08:04:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:15 [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: go +2021-11-19 08:04:15 [INFO] --------------------------- +2021-11-19 08:04:15 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 08:04:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 08:04:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:15 [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: go +2021-11-19 08:04:15 [INFO] --------------------------- +2021-11-19 08:04:15 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 08:04:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:16 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 08:04:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:16 [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: go +2021-11-19 08:04:16 [INFO] --------------------------- +2021-11-19 08:04:16 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 08:04:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 08:04: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 08:04:17 [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: go +2021-11-19 08:04:17 [INFO] --------------------------- +2021-11-19 08:04:17 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 08:04:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 08:04: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 08:04: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: go +2021-11-19 08:04:18 [INFO] --------------------------- +2021-11-19 08:04:18 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 08:04:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 08:04: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 08:04: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: go +2021-11-19 08:04:19 [INFO] --------------------------- +2021-11-19 08:04:19 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 08:04:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 08:04: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 08:04:20 [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: go +2021-11-19 08:04:20 [INFO] --------------------------- +2021-11-19 08:04:20 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 08:04:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:21 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 08:04:21 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:21 [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: go +2021-11-19 08:04:21 [INFO] --------------------------- +2021-11-19 08:04:21 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 08:04:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 08:04:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:22 [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: go +2021-11-19 08:04:22 [INFO] --------------------------- +2021-11-19 08:04:22 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 08:04:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 08:04:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:22 [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: go +2021-11-19 08:04:22 [INFO] --------------------------- +2021-11-19 08:04:22 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 08:04:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:23 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 08:04:23 [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 08:04:23 [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: go +2021-11-19 08:04:23 [INFO] --------------------------- +2021-11-19 08:04:23 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 08:04:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:25 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 08:04:25 [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 08:04:25 [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: go +2021-11-19 08:04:25 [INFO] --------------------------- +2021-11-19 08:04:25 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 08:04:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:27 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 08:04:27 [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 08:04:27 [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: go +2021-11-19 08:04:27 [INFO] --------------------------- +2021-11-19 08:04:27 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 08:04:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 08:04:28 [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 08:04:28 [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: go +2021-11-19 08:04:28 [INFO] --------------------------- +2021-11-19 08:04:28 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 08:04:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 08:04:28 [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 08:04:28 [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: go +2021-11-19 08:04:28 [INFO] --------------------------- +2021-11-19 08:04:28 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 08:04:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:29 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 08:04:29 [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 08:04:29 [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: go +2021-11-19 08:04:29 [INFO] --------------------------- +2021-11-19 08:04:29 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +super-linter Log +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 08:03:49 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 08:03:49 [INFO] - Image Creation Date:[] +2021-11-19 08:03:49 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:49 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [INFO] The Super-Linter source code can be found at: +2021-11-19 08:03:49 [INFO] - https://github.com/github/super-linter +2021-11-19 08:03:49 [INFO] --------------------------------------------- +2021-11-19 08:03:49 [DEBUG] --------------------------------------------- +2021-11-19 08:03:49 [DEBUG] Linter Version Info: +2021-11-19 08:03:49 [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 08:03:49 [DEBUG] --------------------------------------------- +2021-11-19 08:03:49 [INFO] -------------------------------------------- +2021-11-19 08:03:49 [INFO] Gathering GitHub information... +2021-11-19 08:03:49 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 08:03:49 [INFO] bypassing GitHub Actions variables... +2021-11-19 08:03:49 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 08:03:49 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 08:03:49 [INFO] -------------------------------------------- +2021-11-19 08:03:49 [INFO] Gathering user validation information... +2021-11-19 08:03:49 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 08:03:49 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 08:03:49 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 08:03:49 [DEBUG] Defining variables for GO linter... +2021-11-19 08:03:49 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 08:03:49 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 08:03:49 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 08:03:49 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 08:03:49 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 08:03:49 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 08:03:50 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Validating [GO] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [R] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 08:03:50 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 08:03:50 [DEBUG] --- DEBUG INFO --- +2021-11-19 08:03:50 [DEBUG] --------------------------------------------- +2021-11-19 08:03:50 [DEBUG] Runner:[root] +2021-11-19 08:03:50 [DEBUG] ENV: +2021-11-19 08:03:50 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=d19019a4bd98 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.BAlipweh13 +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 08:03:50 [DEBUG] --------------------------------------------- +2021-11-19 08:03:50 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 08:03:50 [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 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 08:03:50 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for ARM... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for ARM... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 08:03:50 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for BASH... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for BASH... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 08:03:50 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 08:03:50 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 08:03:50 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 08:03:50 [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 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 08:03:50 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for CLOJURE... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 08:03:50 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 08:03:50 [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 08:03:50 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 08:03:50 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 08:03:50 [DEBUG] Loading rules for CPP... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CPP... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 08:03:50 [DEBUG] Loading rules for CSHARP... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 08:03:50 [DEBUG] Loading rules for CSS... +2021-11-19 08:03:50 [DEBUG] Getting linter rules for CSS... +2021-11-19 08:03:50 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:50 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 08:03:50 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:50 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 08:03:50 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:50 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 08:03:50 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 08:03:51 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for DART... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for DART... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 08:03:51 [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 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 08:03:51 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 08:03:51 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 08:03:51 [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 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 08:03:51 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 08:03:51 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for ENV... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for ENV... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 08:03:51 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 08:03:51 [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 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 08:03:51 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 08:03:51 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GHERKIN... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 08:03:51 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GO... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GO... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:51 [INFO] ---------------------------------------------- +2021-11-19 08:03:51 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 08:03:51 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:03:51 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:03:51 [DEBUG] Loading rules for GROOVY... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 08:03:51 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for HTML... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for HTML... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 08:03:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:51 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 08:03:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 08:03:51 [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 08:03:51 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 08:03:51 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 08:03:51 [DEBUG] Loading rules for JAVA... +2021-11-19 08:03:51 [DEBUG] Getting linter rules for JAVA... +2021-11-19 08:03:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:51 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 08:03:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:51 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 08:03:52 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JSCPD... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 08:03:52 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for JSON... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSON... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 08:03:52 [DEBUG] Loading rules for JSONC... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSONC... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 08:03:52 [DEBUG] Loading rules for JSX... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for JSX... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:52 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:03:52 [DEBUG] Loading rules for KOTLIN... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 08:03:52 [DEBUG] Loading rules for LATEX... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for LATEX... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 08:03:52 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for LUA... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for LUA... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 08:03:52 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 08:03:52 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 08:03:52 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for OPENAPI... +2021-11-19 08:03:52 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 08:03:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:52 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 08:03:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:52 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 08:03:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:52 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 08:03:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 08:03:52 [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 08:03:52 [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 08:03:52 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 08:03:52 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 08:03:52 [DEBUG] Loading rules for PERL... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PERL... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 08:03: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 08:03:53 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 08:03:53 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 08:03: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 08:03:53 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 08:03:53 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 08:03:53 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 08:03:53 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:03:53 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 08:03:53 [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 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 08:03:53 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 08:03:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:53 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 08:03:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 08:03:53 [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 08:03:53 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 08:03:53 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 08:03:53 [DEBUG] Loading rules for R... +2021-11-19 08:03:53 [DEBUG] Getting linter rules for R... +2021-11-19 08:03:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:53 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 08:03:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:53 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 08:03:54 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for RAKU... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RAKU... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 08:03:54 [DEBUG] Loading rules for RUBY... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUBY... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 08:03: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 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 08:03:54 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for RUST_2015... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 08:03:54 [DEBUG] Loading rules for RUST_2018... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 08:03:54 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 08:03:54 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 08:03:54 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 08:03:54 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 08:03:54 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 08:03:54 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for STATES... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for STATES... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 08:03:54 [DEBUG] Loading rules for SQL... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SQL... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 08:03:54 [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 08:03:54 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 08:03:54 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 08:03:54 [DEBUG] Loading rules for TEKTON... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 08:03:54 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 08:03:54 [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 08:03:54 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 08:03:54 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 08:03:54 [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 08:03:54 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 08:03:54 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 08:03:54 [DEBUG] Loading rules for TSX... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TSX... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:54 [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 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:54 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:54 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03:54 [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 08:03: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 08:03:54 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:54 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:54 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:54 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 08:03:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:54 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:03:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:55 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:03:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:03:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:03: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 08:03: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 08:03:55 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:03:55 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:03:55 [DEBUG] Loading rules for XML... +2021-11-19 08:03:55 [DEBUG] Getting linter rules for XML... +2021-11-19 08:03:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:55 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 08:03:55 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 08:03:55 [DEBUG] Loading rules for YAML... +2021-11-19 08:03:55 [DEBUG] Getting linter rules for YAML... +2021-11-19 08:03:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:03:55 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 08:03:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:03:55 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 08:03:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:03:55 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 08:03:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 08:03: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 08:03: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 08:03:55 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 08:03:55 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 08:03:55 [DEBUG] ENV:[browser] +2021-11-19 08:03:55 [DEBUG] ENV:[es6] +2021-11-19 08:03:55 [DEBUG] ENV:[jest] +2021-11-19 08:03:55 [DEBUG] ENV:[browser] +2021-11-19 08:03:55 [DEBUG] ENV:[es6] +2021-11-19 08:03:55 [DEBUG] ENV:[jest] +2021-11-19 08:03:55 [DEBUG] --- Linter commands --- +2021-11-19 08:03:55 [DEBUG] ----------------------- +2021-11-19 08:03:55 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 08:03:55 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 08:03:55 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 08:03:55 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 08:03:55 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 08:03:55 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 08:03:55 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 08:03:55 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 08:03:55 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 08:03:55 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 08:03:55 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 08:03:55 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 08:03:55 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 08:03:55 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 08:03:55 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 08:03:55 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 08:03:55 [DEBUG] Linter key: R, command: lintr +2021-11-19 08:03:55 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 08:03:55 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 08:03:55 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 08:03:55 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 08:03:55 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 08:03:55 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 08:03:55 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 08:03:55 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 08:03:55 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 08:03:55 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 08:03:55 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 08:03:55 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 08:03:55 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 08:03:55 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 08:03:55 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 08:03:55 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 08:03:55 [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 08:03:55 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 08:03:55 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 08:03:55 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 08:03:55 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 08:03:55 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 08:03:55 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 08:03:55 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 08:03:55 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [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 08:03:55 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 08:03:55 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 08:03:55 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:03:55 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 08:03:55 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 08:03:55 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 08:03:55 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 08:03:55 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 08:03:55 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 08:03:55 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 08:03:55 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 08:03:55 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 08:03:55 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 08:03:55 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 08:03:55 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 08:03:55 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 08:03:55 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 08:03:55 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 08:03:55 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 08:03:56 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 08:03:56 [DEBUG] --------------------------------------------- +2021-11-19 08:03:56 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 08:03:56 [DEBUG] Building file list... +2021-11-19 08:03:56 [DEBUG] Validate all code base: true... +2021-11-19 08:03:56 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 08:03:56 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 08:03:56 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 08:03:56 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 08:03:56 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 08:03:56 [DEBUG] ---------------------------------------------- +2021-11-19 08:03: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 08:03:56 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 08:03:56 [DEBUG] Loading the files list that Git ignores... +2021-11-19 08:03:57 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 08:03:57 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 08:03:57 [DEBUG] ----------------------- +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 08:03:57 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 08:03:57 [DEBUG] --------------------------------------------- +2021-11-19 08:03:57 [INFO] --------------------------------- +2021-11-19 08:03:57 [INFO] ------ File list to check: ------ +2021-11-19 08:03:57 [INFO] --------------------------------- +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 08:03:57 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 08:03:57 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 08:03:57 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 08:03:57 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 08:03:57 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 08:03:57 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 08:03:57 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 08:03:57 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 08:03:57 [DEBUG]  +2021-11-19 08:03:57 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:03:58 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 08:03:58 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:58 [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 08:03:58 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:58 [DEBUG]  +2021-11-19 08:03:58 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 08:03:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03: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 08:03:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:03:59 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:03:59 [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 08:03:59 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:03:59 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 08:04:00 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 08:04:00 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 08:04:00 [DEBUG]  +2021-11-19 08:04:00 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 08:04: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 08:04:01 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 08:04:01 [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 08:04:01 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 08:04:01 [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 08:04:01 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 08:04:01 [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 08:04:01 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 08:04:01 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 08:04:01 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 08:04:01 [DEBUG]  +2021-11-19 08:04:01 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 08:04: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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 08:04:02 [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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 08:04:02 [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 08:04:02 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:02 [DEBUG]  +2021-11-19 08:04:02 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:04: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 08:04:03 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:04:03 [DEBUG]  +2021-11-19 08:04:03 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:04: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 08:04:04 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:04 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 08:04:04 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 08:04:04 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 08:04:04 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:04:05 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 08:04:05 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:04: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 08:04:05 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:04: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 08:04:05 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 08:04: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 08:04:05 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 08:04:05 [DEBUG]  +2021-11-19 08:04:05 [INFO] ---------------------------------------------- +2021-11-19 08:04:05 [INFO] Successfully gathered list of files... +2021-11-19 08:04:05 [DEBUG] --- ENV (before running linters) --- +2021-11-19 08:04:05 [DEBUG] ------------------------------------ +2021-11-19 08:04:05 [DEBUG] ENV: +2021-11-19 08:04: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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=d19019a4bd98 +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.BAlipweh13 +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 08:04:05 [DEBUG] ------------------------------------ +2021-11-19 08:04:05 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 08:04:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the ARM language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the BASH language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CPP language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CSHARP language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the CSS language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the DART language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the ENV language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 08:04:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 08:04:06 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 08:04:06 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 08:04:06 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 08:04:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 08:04:06 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:04:06 [DEBUG] Running linter for the GO language... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 08:04:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 08:04:06 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 08:04:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 08:04:06 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 08:04:06 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 08:04:06 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 08:04:06 [DEBUG] Workspace path: /tmp/lint +2021-11-19 08:04:06 [INFO]  +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 08:04:06 [INFO] Linting [GO] files... +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [INFO] ---------------------------------------------- +2021-11-19 08:04:06 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 08:04:06 [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 08:04:06 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:06 [INFO] --------------------------- +2021-11-19 08:04:06 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 08:04:07 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:07 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:07 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:07 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 08:04: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 08:04:07 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:07 [INFO] --------------------------- +2021-11-19 08:04:07 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 08:04:08 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:08 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:08 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:08 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 08:04: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 08:04:08 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:08 [INFO] --------------------------- +2021-11-19 08:04:08 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 08:04:09 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:09 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:09 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:09 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 08:04:09 [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 08:04:09 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:09 [INFO] --------------------------- +2021-11-19 08:04:09 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 08:04:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 08:04: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 08:04:10 [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 08:04:10 [INFO] --------------------------- +2021-11-19 08:04:10 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 08:04:10 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:10 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:10 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 08:04: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 08:04:10 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:04:10 [INFO] --------------------------- +2021-11-19 08:04:10 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 08:04:11 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:11 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:11 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:11 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 08:04:11 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:11 [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: go +2021-11-19 08:04:11 [INFO] --------------------------- +2021-11-19 08:04:11 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 08:04:12 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:12 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:12 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:12 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 08:04:12 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:12 [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: go +2021-11-19 08:04:12 [INFO] --------------------------- +2021-11-19 08:04:12 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 08:04:13 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:13 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:13 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:13 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 08:04:13 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:13 [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: go +2021-11-19 08:04:13 [INFO] --------------------------- +2021-11-19 08:04:13 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 08:04:14 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:14 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:14 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:14 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 08:04:14 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:14 [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: go +2021-11-19 08:04:14 [INFO] --------------------------- +2021-11-19 08:04:14 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 08:04:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 08:04:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:15 [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: go +2021-11-19 08:04:15 [INFO] --------------------------- +2021-11-19 08:04:15 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 08:04:15 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:15 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:15 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 08:04:15 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:15 [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: go +2021-11-19 08:04:15 [INFO] --------------------------- +2021-11-19 08:04:15 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 08:04:16 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:16 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:16 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:16 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 08:04:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:16 [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: go +2021-11-19 08:04:16 [INFO] --------------------------- +2021-11-19 08:04:16 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 08:04:17 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:17 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:17 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 08:04: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 08:04:17 [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: go +2021-11-19 08:04:17 [INFO] --------------------------- +2021-11-19 08:04:17 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 08:04:18 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:18 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:18 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 08:04: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 08:04: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: go +2021-11-19 08:04:18 [INFO] --------------------------- +2021-11-19 08:04:18 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 08:04:19 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:19 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:19 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 08:04: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 08:04: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: go +2021-11-19 08:04:19 [INFO] --------------------------- +2021-11-19 08:04:19 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 08:04:20 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:20 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:20 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 08:04: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 08:04:20 [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: go +2021-11-19 08:04:20 [INFO] --------------------------- +2021-11-19 08:04:20 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 08:04:21 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:21 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:21 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:21 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 08:04:21 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:21 [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: go +2021-11-19 08:04:21 [INFO] --------------------------- +2021-11-19 08:04:21 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 08:04:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 08:04:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:22 [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: go +2021-11-19 08:04:22 [INFO] --------------------------- +2021-11-19 08:04:22 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 08:04:22 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:22 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:22 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 08:04:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:04:22 [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: go +2021-11-19 08:04:22 [INFO] --------------------------- +2021-11-19 08:04:22 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 08:04:23 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:23 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:23 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:23 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 08:04:23 [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 08:04:23 [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: go +2021-11-19 08:04:23 [INFO] --------------------------- +2021-11-19 08:04:23 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 08:04:25 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:25 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:25 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:25 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 08:04:25 [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 08:04:25 [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: go +2021-11-19 08:04:25 [INFO] --------------------------- +2021-11-19 08:04:25 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 08:04:27 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:27 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:27 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:27 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:27 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 08:04:27 [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 08:04:27 [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: go +2021-11-19 08:04:27 [INFO] --------------------------- +2021-11-19 08:04:27 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 08:04:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 08:04:28 [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 08:04:28 [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: go +2021-11-19 08:04:28 [INFO] --------------------------- +2021-11-19 08:04:28 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 08:04:28 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:28 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:28 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 08:04:28 [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 08:04:28 [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: go +2021-11-19 08:04:28 [INFO] --------------------------- +2021-11-19 08:04:28 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 08:04:29 [DEBUG] Found errors. Error code: 3, File type: GO, Error on missing exec bit: false +2021-11-19 08:04:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:04:29 [ERROR] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:29 [DEBUG] Error code: 3. Command output: +------ +level=error msg="Can't read config: can't read viper config: While parsing config: yaml: unmarshal errors: + line 1: cannot unmarshal !!str `../../....` into map[string]interface {}" +------ +2021-11-19 08:04:29 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 08:04:29 [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 08:04:29 [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: go +2021-11-19 08:04:29 [INFO] --------------------------- +2021-11-19 08:04:29 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +super-linter Log +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 08:07:59 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 08:08:00 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 08:08:00 [INFO] --------------------------------------------- +2021-11-19 08:08:00 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 08:08:00 [INFO] - Image Creation Date:[] +2021-11-19 08:08:00 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:08:00 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 08:08:00 [INFO] --------------------------------------------- +2021-11-19 08:08:00 [INFO] --------------------------------------------- +2021-11-19 08:08:00 [INFO] The Super-Linter source code can be found at: +2021-11-19 08:08:00 [INFO] - https://github.com/github/super-linter +2021-11-19 08:08:00 [INFO] --------------------------------------------- +2021-11-19 08:08:00 [DEBUG] --------------------------------------------- +2021-11-19 08:08:00 [DEBUG] Linter Version Info: +2021-11-19 08:08:00 [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 08:08:00 [DEBUG] --------------------------------------------- +2021-11-19 08:08:00 [INFO] -------------------------------------------- +2021-11-19 08:08:00 [INFO] Gathering GitHub information... +2021-11-19 08:08:00 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 08:08:00 [INFO] bypassing GitHub Actions variables... +2021-11-19 08:08:00 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 08:08:00 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 08:08:00 [INFO] -------------------------------------------- +2021-11-19 08:08:00 [INFO] Gathering user validation information... +2021-11-19 08:08:00 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 08:08:00 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 08:08:00 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 08:08:00 [DEBUG] Defining variables for GO linter... +2021-11-19 08:08:00 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 08:08:00 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 08:08:00 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 08:08:00 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 08:08:00 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 08:08:00 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 08:08:00 [DEBUG] - Validating [GO] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [R] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 08:08:00 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 08:08:00 [DEBUG] --- DEBUG INFO --- +2021-11-19 08:08:00 [DEBUG] --------------------------------------------- +2021-11-19 08:08:00 [DEBUG] Runner:[root] +2021-11-19 08:08:00 [DEBUG] ENV: +2021-11-19 08:08:00 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=f22d5b33412b +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.SXLpVM6ksy +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 08:08:00 [DEBUG] --------------------------------------------- +2021-11-19 08:08:00 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 08:08:00 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 08:08:00 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:00 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 08:08:00 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:00 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 08:08:00 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:00 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 08:08:00 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 08:08:00 [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 08:08:00 [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 08:08:00 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 08:08:00 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for ARM... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for ARM... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 08:08:01 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for BASH... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for BASH... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 08:08:01 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 08:08:01 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 08:08:01 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 08:08:01 [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 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 08:08:01 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for CLOJURE... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 08:08:01 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 08:08:01 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for CPP... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for CPP... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 08:08:01 [DEBUG] Loading rules for CSHARP... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 08:08:01 [DEBUG] Loading rules for CSS... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for CSS... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 08:08:01 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for DART... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for DART... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 08:08:01 [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 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 08:08:01 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 08:08:01 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 08:08:01 [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 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 08:08:01 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 08:08:01 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for ENV... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for ENV... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 08:08:01 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 08:08:01 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 08:08:01 [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 08:08:01 [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 08:08:01 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 08:08:01 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 08:08:01 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 08:08:01 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 08:08:01 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:01 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 08:08:01 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:01 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 08:08:01 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:01 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 08:08:02 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for GHERKIN... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 08:08:02 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for GO... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for GO... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:08:02 [INFO] ---------------------------------------------- +2021-11-19 08:08:02 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 08:08:02 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 08:08:02 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 08:08:02 [DEBUG] Loading rules for GROOVY... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 08:08:02 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for HTML... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for HTML... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 08:08:02 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for JAVA... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for JAVA... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 08:08:02 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:08:02 [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 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:08:02 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:08:02 [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 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:08:02 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for JSCPD... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 08:08:02 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for JSON... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for JSON... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 08:08:02 [DEBUG] Loading rules for JSONC... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for JSONC... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 08:08:02 [DEBUG] Loading rules for JSX... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for JSX... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:08:02 [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 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:08:02 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 08:08:02 [DEBUG] Loading rules for KOTLIN... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 08:08:02 [DEBUG] Loading rules for LATEX... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for LATEX... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 08:08:02 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for LUA... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for LUA... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 08:08:02 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 08:08:02 [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 08:08:02 [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 08:08:02 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 08:08:02 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 08:08:02 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 08:08:02 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 08:08:02 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:02 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 08:08:02 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:02 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 08:08:02 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:02 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 08:08:02 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 08:08:03 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for OPENAPI... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 08:08:03 [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 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 08:08:03 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PERL... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PERL... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 08:08:03 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 08:08:03 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 08:08:03 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 08:08:03 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 08:08:03 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 08:08:03 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 08:08:03 [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 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 08:08:03 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 08:08:03 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 08:08:03 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 08:08:03 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 08:08:03 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:03 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 08:08:03 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:03 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 08:08:03 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:03 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 08:08:03 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 08:08:03 [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 08:08:03 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 08:08:03 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 08:08:03 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 08:08:03 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 08:08:04 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for R... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for R... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 08:08:04 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for RAKU... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for RAKU... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 08:08:04 [DEBUG] Loading rules for RUBY... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for RUBY... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 08:08:04 [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 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 08:08:04 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for RUST_2015... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 08:08:04 [DEBUG] Loading rules for RUST_2018... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 08:08:04 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 08:08:04 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 08:08:04 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 08:08:04 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 08:08:04 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 08:08:04 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for STATES... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for STATES... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 08:08:04 [DEBUG] Loading rules for SQL... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for SQL... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 08:08:04 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 08:08:04 [DEBUG] Loading rules for TEKTON... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 08:08:04 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 08:08:04 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 08:08:04 [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 08:08:04 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 08:08:04 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 08:08:04 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 08:08:04 [DEBUG] Loading rules for TSX... +2021-11-19 08:08:04 [DEBUG] Getting linter rules for TSX... +2021-11-19 08:08:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:04 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 08:08:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:04 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:08:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:04 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:08:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:08:04 [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 08:08:04 [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 08:08:05 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:08:05 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:08:05 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 08:08:05 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 08:08:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:05 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 08:08:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:05 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:08:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:08:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:08:05 [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 08:08:05 [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 08:08:05 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:08:05 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:08:05 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 08:08:05 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 08:08:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:05 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 08:08:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:05 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 08:08:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:05 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 08:08:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 08:08:05 [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 08:08:05 [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 08:08:05 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 08:08:05 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 08:08:05 [DEBUG] Loading rules for XML... +2021-11-19 08:08:05 [DEBUG] Getting linter rules for XML... +2021-11-19 08:08:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:05 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 08:08:05 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 08:08:05 [DEBUG] Loading rules for YAML... +2021-11-19 08:08:05 [DEBUG] Getting linter rules for YAML... +2021-11-19 08:08:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 08:08:05 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 08:08:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 08:08:05 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 08:08:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 08:08:05 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 08:08:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 08:08:05 [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 08:08:05 [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 08:08:05 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 08:08:05 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 08:08:05 [DEBUG] ENV:[browser] +2021-11-19 08:08:05 [DEBUG] ENV:[es6] +2021-11-19 08:08:05 [DEBUG] ENV:[jest] +2021-11-19 08:08:05 [DEBUG] ENV:[browser] +2021-11-19 08:08:05 [DEBUG] ENV:[es6] +2021-11-19 08:08:05 [DEBUG] ENV:[jest] +2021-11-19 08:08:05 [DEBUG] --- Linter commands --- +2021-11-19 08:08:05 [DEBUG] ----------------------- +2021-11-19 08:08:05 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 08:08:05 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 08:08:05 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 08:08:05 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 08:08:05 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 08:08:05 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:08:05 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 08:08:05 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 08:08:05 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 08:08:05 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 08:08:05 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 08:08:05 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 08:08:05 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 08:08:05 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 08:08:05 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 08:08:05 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 08:08:05 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 08:08:05 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 08:08:05 [DEBUG] Linter key: R, command: lintr +2021-11-19 08:08:05 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 08:08:05 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 08:08:05 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 08:08:05 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:08:05 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 08:08:05 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 08:08:05 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 08:08:06 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 08:08:06 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 08:08:06 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:08:06 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 08:08:06 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 08:08:06 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 08:08:06 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 08:08:06 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 08:08:06 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 08:08:06 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 08:08:06 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 08:08:06 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 08:08:06 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 08:08:06 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 08:08:06 [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 08:08:06 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 08:08:06 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 08:08:06 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 08:08:06 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 08:08:06 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 08:08:06 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 08:08:06 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 08:08:06 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 08:08:06 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 08:08:06 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:08:06 [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 08:08:06 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 08:08:06 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 08:08:06 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 08:08:06 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 08:08:06 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 08:08:06 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 08:08:06 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 08:08:06 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 08:08:06 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 08:08:06 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 08:08:06 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 08:08:06 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 08:08:06 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 08:08:06 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 08:08:06 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 08:08:06 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 08:08:06 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 08:08:06 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 08:08:06 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 08:08:06 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 08:08:06 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 08:08:06 [DEBUG] --------------------------------------------- +2021-11-19 08:08:06 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 08:08:06 [DEBUG] Building file list... +2021-11-19 08:08:06 [DEBUG] Validate all code base: true... +2021-11-19 08:08:06 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 08:08:06 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 08:08:06 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 08:08:06 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 08:08:06 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 08:08:06 [DEBUG] ---------------------------------------------- +2021-11-19 08:08:06 [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 08:08:06 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 08:08:06 [DEBUG] Loading the files list that Git ignores... +2021-11-19 08:08:07 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 08:08:07 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 08:08:07 [DEBUG] ----------------------- +2021-11-19 08:08:07 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 08:08:07 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 08:08:07 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 08:08:07 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 08:08:07 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 08:08:07 [DEBUG] --------------------------------------------- +2021-11-19 08:08:07 [INFO] --------------------------------- +2021-11-19 08:08:07 [INFO] ------ File list to check: ------ +2021-11-19 08:08:07 [INFO] --------------------------------- +2021-11-19 08:08:07 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 08:08:07 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 08:08:07 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 08:08:08 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 08:08:08 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 08:08:08 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 08:08:08 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 08:08:08 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 08:08:08 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 08:08:08 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 08:08:08 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 08:08:08 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 08:08:08 [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 08:08:08 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:08 [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 08:08:08 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:08 [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 08:08:08 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:08 [DEBUG]  +2021-11-19 08:08:08 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:08:08 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 08:08:08 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:08:09 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 08:08:09 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 08:08:09 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:08:09 [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 08:08:09 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:08:09 [DEBUG]  +2021-11-19 08:08:09 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 08:08:10 [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 08:08:10 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 08:08:10 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 08:08:10 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 08:08:10 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 08:08:10 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:08:10 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 08:08:10 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 08:08:10 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 08:08:10 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 08:08:10 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 08:08:10 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 08:08:10 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 08:08:10 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 08:08:10 [DEBUG]  +2021-11-19 08:08:10 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:08:11 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 08:08:11 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:08:11 [DEBUG]  +2021-11-19 08:08:11 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 08:08:12 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 08:08:12 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 08:08:12 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 08:08:12 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 08:08:12 [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 08:08:12 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 08:08:12 [DEBUG]  +2021-11-19 08:08:12 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 08:08:13 [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 08:08:13 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 08:08:13 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 08:08:13 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:08:13 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 08:08:13 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:08:13 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 08:08:13 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 08:08:13 [DEBUG]  +2021-11-19 08:08:13 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 08:08:14 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 08:08:14 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 08:08:14 [DEBUG]  +2021-11-19 08:08:14 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 08:08:15 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 08:08:15 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 08:08:15 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 08:08:15 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 08:08:15 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 08:08:15 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 08:08:15 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 08:08:15 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 08:08:15 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 08:08:15 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 08:08:15 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 08:08:15 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 08:08:15 [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 08:08:15 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 08:08:15 [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 08:08:15 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 08:08:15 [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 08:08:15 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 08:08:15 [DEBUG]  +2021-11-19 08:08:15 [INFO] ---------------------------------------------- +2021-11-19 08:08:15 [INFO] Successfully gathered list of files... +2021-11-19 08:08:15 [DEBUG] --- ENV (before running linters) --- +2021-11-19 08:08:15 [DEBUG] ------------------------------------ +2021-11-19 08:08:15 [DEBUG] ENV: +2021-11-19 08:08:15 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=f22d5b33412b +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.SXLpVM6ksy +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 08:08:15 [DEBUG] ------------------------------------ +2021-11-19 08:08:15 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the ARM language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the BASH language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the CPP language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the CSHARP language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the CSS language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the DART language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the ENV language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:08:15 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 08:08:15 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 08:08:15 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 08:08:15 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 08:08:15 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 08:08:15 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 08:08:15 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 08:08:15 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:08:15 [DEBUG] Running linter for the GO language... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 08:08:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 08:08:15 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 08:08:15 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 08:08:15 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 08:08:15 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 08:08:15 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 08:08:15 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 08:08:15 [DEBUG] Workspace path: /tmp/lint +2021-11-19 08:08:15 [INFO]  +2021-11-19 08:08:15 [INFO] ---------------------------------------------- +2021-11-19 08:08:15 [INFO] ---------------------------------------------- +2021-11-19 08:08:15 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 08:08:15 [INFO] Linting [GO] files... +2021-11-19 08:08:15 [INFO] ---------------------------------------------- +2021-11-19 08:08:15 [INFO] ---------------------------------------------- +2021-11-19 08:08:16 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 08:08:16 [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 08:08:16 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:08:16 [INFO] --------------------------- +2021-11-19 08:08:16 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 08:08:22 [INFO] - File:[closer.go] was linted with [golangci-lint] successfully +2021-11-19 08:08:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:08:22 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 08:08:22 [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 08:08:22 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:08:22 [INFO] --------------------------- +2021-11-19 08:08:22 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 08:08:36 [INFO] - File:[config.go] was linted with [golangci-lint] successfully +2021-11-19 08:08:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:08:36 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 08:08:36 [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 08:08:36 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:08:36 [INFO] --------------------------- +2021-11-19 08:08:36 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 08:08:37 [INFO] - File:[env.go] was linted with [golangci-lint] successfully +2021-11-19 08:08:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:08:37 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 08:08: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 08:08:38 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:08:38 [INFO] --------------------------- +2021-11-19 08:08:38 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 08:08:39 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 08:08:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:08:39 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 08:08:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:08:39 [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 08:08:39 [INFO] --------------------------- +2021-11-19 08:08:39 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 08:09:05 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:05 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 08:09: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 08:09:05 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:09:05 [INFO] --------------------------- +2021-11-19 08:09:05 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 08:09:06 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 08:09:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:09:06 [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: go +2021-11-19 08:09:06 [INFO] --------------------------- +2021-11-19 08:09:06 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 08:09:09 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 08:09: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 08:09: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: go +2021-11-19 08:09:09 [INFO] --------------------------- +2021-11-19 08:09:09 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 08:09:11 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:11 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 08:09:11 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:09:11 [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: go +2021-11-19 08:09:11 [INFO] --------------------------- +2021-11-19 08:09:11 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 08:09:14 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:14 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 08:09:14 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:09:14 [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: go +2021-11-19 08:09:14 [INFO] --------------------------- +2021-11-19 08:09:14 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 08:09:17 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:17 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 08:09: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 08:09:17 [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: go +2021-11-19 08:09:17 [INFO] --------------------------- +2021-11-19 08:09:17 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 08:09:20 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:20 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 08:09: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 08:09:20 [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: go +2021-11-19 08:09:20 [INFO] --------------------------- +2021-11-19 08:09:20 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 08:09:23 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:23 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 08:09:23 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:09:23 [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: go +2021-11-19 08:09:23 [INFO] --------------------------- +2021-11-19 08:09:23 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 08:09:27 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:27 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:27 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 08:09:27 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:09:27 [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: go +2021-11-19 08:09:27 [INFO] --------------------------- +2021-11-19 08:09:27 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 08:09:31 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 08:09: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 08:09: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: go +2021-11-19 08:09:31 [INFO] --------------------------- +2021-11-19 08:09:31 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 08:09:34 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:34 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 08:09: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 08:09:34 [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: go +2021-11-19 08:09:34 [INFO] --------------------------- +2021-11-19 08:09:34 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 08:09:37 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:37 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 08:09: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 08:09:37 [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: go +2021-11-19 08:09:37 [INFO] --------------------------- +2021-11-19 08:09:37 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 08:09:40 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 08:09: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 08:09:40 [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: go +2021-11-19 08:09:40 [INFO] --------------------------- +2021-11-19 08:09:40 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 08:09:46 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:09:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:09:46 [ERROR] Error code: 1. Command output: +------ +example/middlewares/tokenauthfromcookie/main.go:10:6: `ExampleTokenAuthFromCookie` is unused (deadcode) +func ExampleTokenAuthFromCookie() { + ^ +------ +2021-11-19 08:09:46 [DEBUG] Error code: 1. Command output: +------ +example/middlewares/tokenauthfromcookie/main.go:10:6: `ExampleTokenAuthFromCookie` is unused (deadcode) +func ExampleTokenAuthFromCookie() { + ^ +------ +2021-11-19 08:09:46 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 08:09: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 08:09: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: go +2021-11-19 08:09:46 [INFO] --------------------------- +2021-11-19 08:09:46 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 08:09:49 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:09:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:09:49 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 08:09:49 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:09:49 [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: go +2021-11-19 08:09:49 [INFO] --------------------------- +2021-11-19 08:09:49 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 08:10:09 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:09 [DEBUG] Error code: 0. Command output: +------ +level=warning msg="[runner] Can't run linter goanalysis_metalinter: inspect: failed to load package : could not load export data: no export data for \"github.com/foomo/keel/example/persistence/mongo/repository\"" +------ +2021-11-19 08:10:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 08:10: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 08:10: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: go +2021-11-19 08:10:09 [INFO] --------------------------- +2021-11-19 08:10:09 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 08:10:11 [INFO] - File:[dummy.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:11 [DEBUG] Error code: 0. Command output: +------ +level=warning msg="[runner] Can't run linter goanalysis_metalinter: inspect: failed to load package : could not load export data: no export data for \"github.com/foomo/keel/example/persistence/mongo/store\"" +------ +2021-11-19 08:10:11 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 08:10:11 [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 08:10:11 [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: go +2021-11-19 08:10:11 [INFO] --------------------------- +2021-11-19 08:10:11 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 08:10:14 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:14 [ERROR] Error code: 1. Command output: +------ +example/persistence/mongo/store/codec.go:14:29: undeclared name: `DateTime` (typecheck) + TDateTime = reflect.TypeOf(DateTime("")) + ^ +example/persistence/mongo/store/codec.go:23:25: undeclared name: `DateTime` (typecheck) + td := val.Interface().(DateTime) + ^ +example/persistence/mongo/store/codec.go:36:18: undeclared name: `DateTime` (typecheck) + var dateTimeVal DateTime + ^ +example/persistence/mongo/store/codec.go:44:17: undeclared name: `NewDateTime` (typecheck) + dateTimeVal = NewDateTime(time.UnixMilli(dt)) + ^ +------ +2021-11-19 08:10:14 [DEBUG] Error code: 1. Command output: +------ +example/persistence/mongo/store/codec.go:14:29: undeclared name: `DateTime` (typecheck) + TDateTime = reflect.TypeOf(DateTime("")) + ^ +example/persistence/mongo/store/codec.go:23:25: undeclared name: `DateTime` (typecheck) + td := val.Interface().(DateTime) + ^ +example/persistence/mongo/store/codec.go:36:18: undeclared name: `DateTime` (typecheck) + var dateTimeVal DateTime + ^ +example/persistence/mongo/store/codec.go:44:17: undeclared name: `NewDateTime` (typecheck) + dateTimeVal = NewDateTime(time.UnixMilli(dt)) + ^ +------ +2021-11-19 08:10:14 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 08:10:14 [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 08:10:14 [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: go +2021-11-19 08:10:14 [INFO] --------------------------- +2021-11-19 08:10:14 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 08:10:15 [INFO] - File:[datetime.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:15 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 08:10:15 [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 08:10:15 [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: go +2021-11-19 08:10:15 [INFO] --------------------------- +2021-11-19 08:10:15 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 08:10:16 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:16 [ERROR] Error code: 1. Command output: +------ +example/persistence/mongo/store/dummy.go:4:2: undeclared name: `Entity` (typecheck) + Entity `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:5:2: undeclared name: `EntityWithVersions` (typecheck) + EntityWithVersions `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:6:2: undeclared name: `EntityWithTimestamps` (typecheck) + EntityWithTimestamps `json:",inline" bson:",inline"` + ^ +------ +2021-11-19 08:10:16 [DEBUG] Error code: 1. Command output: +------ +example/persistence/mongo/store/dummy.go:4:2: undeclared name: `Entity` (typecheck) + Entity `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:5:2: undeclared name: `EntityWithVersions` (typecheck) + EntityWithVersions `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:6:2: undeclared name: `EntityWithTimestamps` (typecheck) + EntityWithTimestamps `json:",inline" bson:",inline"` + ^ +------ +2021-11-19 08:10:16 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 08:10:16 [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 08:10:16 [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: go +2021-11-19 08:10:16 [INFO] --------------------------- +2021-11-19 08:10:16 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 08:10:18 [INFO] - File:[entity.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:18 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 08:10:18 [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 08:10:18 [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: go +2021-11-19 08:10:18 [INFO] --------------------------- +2021-11-19 08:10:18 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 08:10:20 [INFO] - File:[entitywithtimestamps.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:20 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 08:10: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 08:10: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: go +2021-11-19 08:10:20 [INFO] --------------------------- +2021-11-19 08:10:20 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 08:10:22 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:22 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:22 [ERROR] Error code: 1. Command output: +------ +example/persistence/mongo/store/entitywithversions.go:36:2: assignOp: replace `e.Version = e.Version + 1` with `e.Version++` (gocritic) + e.Version = e.Version + 1 + ^ +------ +2021-11-19 08:10:22 [DEBUG] Error code: 1. Command output: +------ +example/persistence/mongo/store/entitywithversions.go:36:2: assignOp: replace `e.Version = e.Version + 1` with `e.Version++` (gocritic) + e.Version = e.Version + 1 + ^ +------ +2021-11-19 08:10:22 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 08:10:22 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 08:10:22 [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: go +2021-11-19 08:10:22 [INFO] --------------------------- +2021-11-19 08:10:22 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 08:10:30 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:30 [DEBUG] Error code: 0. Command output: +------ +level=warning msg="[runner] Can't run linter goanalysis_metalinter: inspect: failed to load package : could not load export data: no export data for \"github.com/foomo/keel/example/persistence/postgres/repository\"" +------ +2021-11-19 08:10:30 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 08:10:30 [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 08:10:30 [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: go +2021-11-19 08:10:30 [INFO] --------------------------- +2021-11-19 08:10:30 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 08:10:32 [INFO] - File:[dummy.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:32 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 08:10: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 08:10: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: go +2021-11-19 08:10:32 [INFO] --------------------------- +2021-11-19 08:10:32 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 08:10:34 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:34 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:34 [ERROR] Error code: 1. Command output: +------ +example/services/main.go:31:2: commentFormatting: put a space between `//` and comment text (gocritic) + //svr.AddServices(keel.NewDefaultServiceHTTPZap()) + ^ +------ +2021-11-19 08:10:34 [DEBUG] Error code: 1. Command output: +------ +example/services/main.go:31:2: commentFormatting: put a space between `//` and comment text (gocritic) + //svr.AddServices(keel.NewDefaultServiceHTTPZap()) + ^ +------ +2021-11-19 08:10:34 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 08:10: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 08:10: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: go +2021-11-19 08:10:34 [INFO] --------------------------- +2021-11-19 08:10:34 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 08:10:40 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:40 [ERROR] Error code: 1. Command output: +------ +example/stream/jetstream/main.go:18:6: `main` is unused (deadcode) +func main() { + ^ +example/stream/jetstream/main.go:59:7: type `Message` is unused (unused) + type Message struct { + ^ +------ +2021-11-19 08:10:40 [DEBUG] Error code: 1. Command output: +------ +example/stream/jetstream/main.go:18:6: `main` is unused (deadcode) +func main() { + ^ +example/stream/jetstream/main.go:59:7: type `Message` is unused (unused) + type Message struct { + ^ +------ +2021-11-19 08:10:40 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 08:10: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 08:10:40 [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: go +2021-11-19 08:10:40 [INFO] --------------------------- +2021-11-19 08:10:40 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 08:10:44 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:44 [ERROR] Error code: 1. Command output: +------ +example/stream/jetstreamraw/main.go:15:6: `main` is unused (deadcode) +func main() { + ^ +------ +2021-11-19 08:10:44 [DEBUG] Error code: 1. Command output: +------ +example/stream/jetstreamraw/main.go:15:6: `main` is unused (deadcode) +func main() { + ^ +------ +2021-11-19 08:10:44 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 08:10: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 08:10: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: go +2021-11-19 08:10:44 [INFO] --------------------------- +2021-11-19 08:10:44 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 08:10:48 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:48 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:48 [ERROR] Error code: 1. Command output: +------ +example/telemetry/main.go:28:18: `ouput` is a misspelling of `output` (misspell) + // pretty print ouput (default: true) + ^ +------ +2021-11-19 08:10:48 [DEBUG] Error code: 1. Command output: +------ +example/telemetry/main.go:28:18: `ouput` is a misspelling of `output` (misspell) + // pretty print ouput (default: true) + ^ +------ +2021-11-19 08:10:48 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 08:10:48 [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 08:10:48 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:48 [INFO] --------------------------- +2021-11-19 08:10:48 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 08:10:49 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:49 [ERROR] Error code: 1. Command output: +------ +jwt/jwt.go:10:7: undeclared name: `Key` (typecheck) + Key Key + ^ +jwt/jwt.go:14:29: undeclared name: `Key` (typecheck) + DeprecatedKeys map[string]Key + ^ +jwt/jwt.go:27:30: undeclared name: `Key` (typecheck) +func WithDeprecatedKeys(v ...Key) Option { + ^ +jwt/jwt.go:48:18: undeclared name: `DefaultKeyFunc` (typecheck) + inst.KeyFunc = DefaultKeyFunc(key, inst.DeprecatedKeys) + ^ +------ +2021-11-19 08:10:49 [DEBUG] Error code: 1. Command output: +------ +jwt/jwt.go:10:7: undeclared name: `Key` (typecheck) + Key Key + ^ +jwt/jwt.go:14:29: undeclared name: `Key` (typecheck) + DeprecatedKeys map[string]Key + ^ +jwt/jwt.go:27:30: undeclared name: `Key` (typecheck) +func WithDeprecatedKeys(v ...Key) Option { + ^ +jwt/jwt.go:48:18: undeclared name: `DefaultKeyFunc` (typecheck) + inst.KeyFunc = DefaultKeyFunc(key, inst.DeprecatedKeys) + ^ +------ +2021-11-19 08:10:49 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 08:10:49 [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 08:10:49 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:49 [INFO] --------------------------- +2021-11-19 08:10:49 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 08:10:51 [INFO] - File:[jwtclaims.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:51 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 08:10:51 [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 08:10:51 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:51 [INFO] --------------------------- +2021-11-19 08:10:51 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 08:10:52 [INFO] - File:[jwtkey.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:52 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 08:10:52 [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 08:10:52 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:52 [INFO] --------------------------- +2021-11-19 08:10:52 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 08:10:54 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:54 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:54 [ERROR] Error code: 1. Command output: +------ +jwt/keyfunc.go:8:25: undeclared name: `Key` (typecheck) +func DefaultKeyFunc(key Key, deprecatedKeys map[string]Key) jwt.Keyfunc { + ^ +------ +2021-11-19 08:10:54 [DEBUG] Error code: 1. Command output: +------ +jwt/keyfunc.go:8:25: undeclared name: `Key` (typecheck) +func DefaultKeyFunc(key Key, deprecatedKeys map[string]Key) jwt.Keyfunc { + ^ +------ +2021-11-19 08:10:54 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 08:10: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 08:10:54 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:54 [INFO] --------------------------- +2021-11-19 08:10:54 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 08:10:55 [INFO] - File:[ldflags.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:55 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 08:10: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 08:10:55 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:55 [INFO] --------------------------- +2021-11-19 08:10:55 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 08:10:57 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:10:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:10:57 [ERROR] Error code: 1. Command output: +------ +log/configure.go:15:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/configure.go:25:17: undeclared name: `FError` (typecheck) + c.l = c.l.With(FError(err)) + ^ +log/configure.go:35:8: undeclared name: `WithHTTPRequest` (typecheck) + c.l = WithHTTPRequest(c.l, r) + ^ +------ +2021-11-19 08:10:57 [DEBUG] Error code: 1. Command output: +------ +log/configure.go:15:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/configure.go:25:17: undeclared name: `FError` (typecheck) + c.l = c.l.With(FError(err)) + ^ +log/configure.go:35:8: undeclared name: `WithHTTPRequest` (typecheck) + c.l = WithHTTPRequest(c.l, r) + ^ +------ +2021-11-19 08:10:57 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 08:10:57 [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 08:10:57 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:57 [INFO] --------------------------- +2021-11-19 08:10:57 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 08:10:58 [INFO] - File:[fields.go] was linted with [golangci-lint] successfully +2021-11-19 08:10:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:10:58 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 08:10: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 08:10:58 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:10:58 [INFO] --------------------------- +2021-11-19 08:10:58 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 08:11:00 [INFO] - File:[fields_error.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:00 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 08:11:00 [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 08:11:00 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:00 [INFO] --------------------------- +2021-11-19 08:11:00 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 08:11:02 [INFO] - File:[fields_http.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:02 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 08:11:03 [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 08:11:03 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:03 [INFO] --------------------------- +2021-11-19 08:11:03 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 08:11:06 [INFO] - File:[fields_messaging.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 08:11: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 08:11: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: go +2021-11-19 08:11:06 [INFO] --------------------------- +2021-11-19 08:11:06 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 08:11:08 [INFO] - File:[fields_net.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:08 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 08:11:08 [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 08:11:08 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:08 [INFO] --------------------------- +2021-11-19 08:11:08 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 08:11:10 [INFO] - File:[fields_service.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 08:11:10 [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 08:11:10 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:10 [INFO] --------------------------- +2021-11-19 08:11:10 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 08:11:12 [INFO] - File:[fields_trace.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:12 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 08:11:12 [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 08:11:12 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:12 [INFO] --------------------------- +2021-11-19 08:11:12 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 08:11:13 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:13 [ERROR] Error code: 1. Command output: +------ +log/log.go:116:16: undeclared name: `FError` (typecheck) + l.Fatal(msg, FError(err), FStackSkip(1)) + ^ +------ +2021-11-19 08:11:13 [DEBUG] Error code: 1. Command output: +------ +log/log.go:116:16: undeclared name: `FError` (typecheck) + l.Fatal(msg, FError(err), FStackSkip(1)) + ^ +------ +2021-11-19 08:11:13 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 08:11:14 [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 08:11:14 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:14 [INFO] --------------------------- +2021-11-19 08:11:14 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 08:11:15 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:15 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:15 [ERROR] Error code: 1. Command output: +------ +log/with.go:18:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/with.go:24:17: undeclared name: `FError` (typecheck) + return With(l, FError(err)) + ^ +log/with.go:28:17: undeclared name: `FHTTPServerName` (typecheck) + return With(l, FHTTPServerName(name)) + ^ +log/with.go:32:17: undeclared name: `FServiceName` (typecheck) + return With(l, FServiceName(name)) + ^ +log/with.go:37:15: undeclared name: `FTraceID` (typecheck) + l = With(l, FTraceID(spanCtx.TraceID().String())) + ^ +log/with.go:44:3: undeclared name: `FHTTPRequestContentLength` (typecheck) + FHTTPRequestContentLength(r.ContentLength), + ^ +log/with.go:45:3: undeclared name: `FHTTPMethod` (typecheck) + FHTTPMethod(r.Method), + ^ +log/with.go:46:3: undeclared name: `FHTTPUserAgent` (typecheck) + FHTTPUserAgent(r.UserAgent()), + ^ +log/with.go:47:3: undeclared name: `FHTTPTarget` (typecheck) + FHTTPTarget(r.RequestURI), + ^ +log/with.go:51:27: undeclared name: `FHTTPHost` (typecheck) + fields = append(fields, FHTTPHost(r.Host)) + ^ +log/with.go:54:27: undeclared name: `FHTTPRequestID` (typecheck) + fields = append(fields, FHTTPRequestID(id)) + ^ +log/with.go:57:27: undeclared name: `FHTTPSessionID` (typecheck) + fields = append(fields, FHTTPSessionID(id)) + ^ +log/with.go:60:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("https")) + ^ +log/with.go:62:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("http")) + ^ +log/with.go:65:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor(fmt.Sprintf("1.%d", r.ProtoMinor))) + ^ +log/with.go:67:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor("2")) + ^ +log/with.go:85:27: undeclared name: `FHTTPClientIP` (typecheck) + fields = append(fields, FHTTPClientIP(clientIP)) + ^ +log/with.go:89:27: undeclared name: `FTraceID` (typecheck) + fields = append(fields, FTraceID(spanCtx.TraceID().String())) + ^ +------ +2021-11-19 08:11:15 [DEBUG] Error code: 1. Command output: +------ +log/with.go:18:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/with.go:24:17: undeclared name: `FError` (typecheck) + return With(l, FError(err)) + ^ +log/with.go:28:17: undeclared name: `FHTTPServerName` (typecheck) + return With(l, FHTTPServerName(name)) + ^ +log/with.go:32:17: undeclared name: `FServiceName` (typecheck) + return With(l, FServiceName(name)) + ^ +log/with.go:37:15: undeclared name: `FTraceID` (typecheck) + l = With(l, FTraceID(spanCtx.TraceID().String())) + ^ +log/with.go:44:3: undeclared name: `FHTTPRequestContentLength` (typecheck) + FHTTPRequestContentLength(r.ContentLength), + ^ +log/with.go:45:3: undeclared name: `FHTTPMethod` (typecheck) + FHTTPMethod(r.Method), + ^ +log/with.go:46:3: undeclared name: `FHTTPUserAgent` (typecheck) + FHTTPUserAgent(r.UserAgent()), + ^ +log/with.go:47:3: undeclared name: `FHTTPTarget` (typecheck) + FHTTPTarget(r.RequestURI), + ^ +log/with.go:51:27: undeclared name: `FHTTPHost` (typecheck) + fields = append(fields, FHTTPHost(r.Host)) + ^ +log/with.go:54:27: undeclared name: `FHTTPRequestID` (typecheck) + fields = append(fields, FHTTPRequestID(id)) + ^ +log/with.go:57:27: undeclared name: `FHTTPSessionID` (typecheck) + fields = append(fields, FHTTPSessionID(id)) + ^ +log/with.go:60:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("https")) + ^ +log/with.go:62:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("http")) + ^ +log/with.go:65:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor(fmt.Sprintf("1.%d", r.ProtoMinor))) + ^ +log/with.go:67:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor("2")) + ^ +log/with.go:85:27: undeclared name: `FHTTPClientIP` (typecheck) + fields = append(fields, FHTTPClientIP(clientIP)) + ^ +log/with.go:89:27: undeclared name: `FTraceID` (typecheck) + fields = append(fields, FTraceID(spanCtx.TraceID().String())) + ^ +------ +2021-11-19 08:11:15 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 08:11:15 [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 08:11:15 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:15 [INFO] --------------------------- +2021-11-19 08:11:15 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 08:11:18 [INFO] - File:[metrics.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:18 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 08:11:18 [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 08:11:18 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:18 [INFO] --------------------------- +2021-11-19 08:11:18 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 08:11:20 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:20 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:20 [ERROR] Error code: 1. Command output: +------ +metrics/metrics_http.go:8:9: undeclared name: `NewRequestSizeSummaryVec` (typecheck) + return NewRequestSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:12:9: undeclared name: `NewResponseSizeSummaryVec` (typecheck) + return NewResponseSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:16:9: undeclared name: `NewRequestsCounterVec` (typecheck) + return NewRequestsCounterVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:20:9: undeclared name: `NewRequestDurationHistogram` (typecheck) + return NewRequestDurationHistogram(namespace, "http") + ^ +------ +2021-11-19 08:11:20 [DEBUG] Error code: 1. Command output: +------ +metrics/metrics_http.go:8:9: undeclared name: `NewRequestSizeSummaryVec` (typecheck) + return NewRequestSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:12:9: undeclared name: `NewResponseSizeSummaryVec` (typecheck) + return NewResponseSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:16:9: undeclared name: `NewRequestsCounterVec` (typecheck) + return NewRequestsCounterVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:20:9: undeclared name: `NewRequestDurationHistogram` (typecheck) + return NewRequestDurationHistogram(namespace, "http") + ^ +------ +2021-11-19 08:11:20 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 08:11:20 [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 08:11:20 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:20 [INFO] --------------------------- +2021-11-19 08:11:20 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 08:11:22 [INFO] - File:[decode.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:22 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 08:11: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 08:11: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: go +2021-11-19 08:11:22 [INFO] --------------------------- +2021-11-19 08:11:22 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 08:11:23 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:23 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 08:11:23 [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 08:11:23 [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: go +2021-11-19 08:11:23 [INFO] --------------------------- +2021-11-19 08:11:23 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 08:11:25 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:25 [ERROR] Error code: 1. Command output: +------ +net/http/cookie/cookie.go:26:16: undeclared name: `TimeProvider` (typecheck) + TimeProvider TimeProvider + ^ +net/http/cookie/cookie.go:28:18: undeclared name: `DomainProvider` (typecheck) + DomainProvider DomainProvider + ^ +net/http/cookie/cookie.go:76:25: undeclared name: `TimeProvider` (typecheck) +func WithTimeProvider(v TimeProvider) Option { + ^ +net/http/cookie/cookie.go:83:27: undeclared name: `DomainProvider` (typecheck) +func WithDomainProvider(v DomainProvider) Option { + ^ +net/http/cookie/cookie.go:104:25: undeclared name: `NewDomainProvider` (typecheck) + inst.DomainProvider = NewDomainProvider() + ^ +net/http/cookie/cookie.go:107:23: undeclared name: `NewTimeProvider` (typecheck) + inst.TimeProvider = NewTimeProvider() + ^ +------ +2021-11-19 08:11:25 [DEBUG] Error code: 1. Command output: +------ +net/http/cookie/cookie.go:26:16: undeclared name: `TimeProvider` (typecheck) + TimeProvider TimeProvider + ^ +net/http/cookie/cookie.go:28:18: undeclared name: `DomainProvider` (typecheck) + DomainProvider DomainProvider + ^ +net/http/cookie/cookie.go:76:25: undeclared name: `TimeProvider` (typecheck) +func WithTimeProvider(v TimeProvider) Option { + ^ +net/http/cookie/cookie.go:83:27: undeclared name: `DomainProvider` (typecheck) +func WithDomainProvider(v DomainProvider) Option { + ^ +net/http/cookie/cookie.go:104:25: undeclared name: `NewDomainProvider` (typecheck) + inst.DomainProvider = NewDomainProvider() + ^ +net/http/cookie/cookie.go:107:23: undeclared name: `NewTimeProvider` (typecheck) + inst.TimeProvider = NewTimeProvider() + ^ +------ +2021-11-19 08:11:25 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 08:11:25 [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 08:11:25 [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: go +2021-11-19 08:11:25 [INFO] --------------------------- +2021-11-19 08:11:25 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 08:11:26 [INFO] - File:[domainprovider.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:26 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 08:11:26 [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 08:11:26 [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: go +2021-11-19 08:11:26 [INFO] --------------------------- +2021-11-19 08:11:26 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 08:11:28 [INFO] - File:[timeprovider.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:28 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:28 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 08:11:28 [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 08:11:28 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:28 [INFO] --------------------------- +2021-11-19 08:11:28 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 08:11:29 [INFO] - File:[header.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:29 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 08:11:29 [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 08:11:29 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:11:29 [INFO] --------------------------- +2021-11-19 08:11:29 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 08:11:30 [INFO] - File:[headervalues.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:30 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 08:11:30 [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 08:11:30 [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: go +2021-11-19 08:11:30 [INFO] --------------------------- +2021-11-19 08:11:30 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 08:11:32 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:32 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/basicauth.go:38:79: undeclared name: `Middleware` (typecheck) +func BasicAuth(username string, passwordHash []byte, opts ...BasicAuthOption) Middleware { + ^ +net/http/middleware/basicauth.go:49:88: undeclared name: `Middleware` (typecheck) +func BasicAuthWithOptions(username string, passwordHash []byte, opts BasicAuthOptions) Middleware { + ^ +------ +2021-11-19 08:11:32 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/basicauth.go:38:79: undeclared name: `Middleware` (typecheck) +func BasicAuth(username string, passwordHash []byte, opts ...BasicAuthOption) Middleware { + ^ +net/http/middleware/basicauth.go:49:88: undeclared name: `Middleware` (typecheck) +func BasicAuthWithOptions(username string, passwordHash []byte, opts BasicAuthOptions) Middleware { + ^ +------ +2021-11-19 08:11:32 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 08:11:32 [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 08:11:32 [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: go +2021-11-19 08:11:32 [INFO] --------------------------- +2021-11-19 08:11:32 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 08:11:33 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:33 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/cookietokenprovider.go:19:80: undeclared name: `TokenProvider` (typecheck) +func CookieTokenProvider(cookieName string, opts ...CookieTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 08:11:33 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/cookietokenprovider.go:19:80: undeclared name: `TokenProvider` (typecheck) +func CookieTokenProvider(cookieName string, opts ...CookieTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 08:11:33 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 08:11:33 [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 08:11:33 [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: go +2021-11-19 08:11:33 [INFO] --------------------------- +2021-11-19 08:11:33 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 08:11:35 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:35 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/cors.go:77:31: undeclared name: `Middleware` (typecheck) +func CORS(opts ...CORSOption) Middleware { + ^ +net/http/middleware/cors.go:88:40: undeclared name: `Middleware` (typecheck) +func CORSWithOptions(opts CORSOptions) Middleware { + ^ +------ +2021-11-19 08:11:35 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/cors.go:77:31: undeclared name: `Middleware` (typecheck) +func CORS(opts ...CORSOption) Middleware { + ^ +net/http/middleware/cors.go:88:40: undeclared name: `Middleware` (typecheck) +func CORSWithOptions(opts CORSOptions) Middleware { + ^ +------ +2021-11-19 08:11:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 08:11: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 08:11: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: go +2021-11-19 08:11:35 [INFO] --------------------------- +2021-11-19 08:11:35 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 08:11:37 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:37 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:37 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/headertokenprovider.go:42:61: undeclared name: `TokenProvider` (typecheck) +func HeaderTokenProvider(opts ...HeaderTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 08:11:37 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/headertokenprovider.go:42:61: undeclared name: `TokenProvider` (typecheck) +func HeaderTokenProvider(opts ...HeaderTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 08:11:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 08:11: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 08:11:37 [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: go +2021-11-19 08:11:37 [INFO] --------------------------- +2021-11-19 08:11:37 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 08:11:38 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:38 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/jwt.go:18:23: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/jwt.go:72:29: undeclared name: `TokenProvider` (typecheck) +func JWTWithTokenProvider(v TokenProvider) JWTOption { + ^ +net/http/middleware/jwt.go:113:67: undeclared name: `Middleware` (typecheck) +func JWT(jwt *jwt.JWT, contextKey interface{}, opts ...JWTOption) Middleware { + ^ +net/http/middleware/jwt.go:124:76: undeclared name: `Middleware` (typecheck) +func JWTWithOptions(jwt *jwt.JWT, contextKey interface{}, opts JWTOptions) Middleware { + ^ +net/http/middleware/jwt.go:63:24: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 08:11:38 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/jwt.go:18:23: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/jwt.go:72:29: undeclared name: `TokenProvider` (typecheck) +func JWTWithTokenProvider(v TokenProvider) JWTOption { + ^ +net/http/middleware/jwt.go:113:67: undeclared name: `Middleware` (typecheck) +func JWT(jwt *jwt.JWT, contextKey interface{}, opts ...JWTOption) Middleware { + ^ +net/http/middleware/jwt.go:124:76: undeclared name: `Middleware` (typecheck) +func JWTWithOptions(jwt *jwt.JWT, contextKey interface{}, opts JWTOptions) Middleware { + ^ +net/http/middleware/jwt.go:63:24: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 08:11:38 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 08:11:38 [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 08:11:38 [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: go +2021-11-19 08:11:39 [INFO] --------------------------- +2021-11-19 08:11:39 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 08:11:40 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:40 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/logger.go:27:35: undeclared name: `Middleware` (typecheck) +func Logger(opts ...LoggerOption) Middleware { + ^ +net/http/middleware/logger.go:45:44: undeclared name: `Middleware` (typecheck) +func LoggerWithOptions(opts LoggerOptions) Middleware { + ^ +net/http/middleware/logger.go:51:10: undeclared name: `WrapResponseWriter` (typecheck) + wr := WrapResponseWriter(w) + ^ +------ +2021-11-19 08:11:40 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/logger.go:27:35: undeclared name: `Middleware` (typecheck) +func Logger(opts ...LoggerOption) Middleware { + ^ +net/http/middleware/logger.go:45:44: undeclared name: `Middleware` (typecheck) +func LoggerWithOptions(opts LoggerOptions) Middleware { + ^ +net/http/middleware/logger.go:51:10: undeclared name: `WrapResponseWriter` (typecheck) + wr := WrapResponseWriter(w) + ^ +------ +2021-11-19 08:11:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 08:11: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 08:11: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: go +2021-11-19 08:11:40 [INFO] --------------------------- +2021-11-19 08:11:40 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 08:11:42 [INFO] - File:[middleware.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:42 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 08:11:42 [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 08:11:42 [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: go +2021-11-19 08:11:42 [INFO] --------------------------- +2021-11-19 08:11:42 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 08:11:44 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:44 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/poweredbyheader.go:28:53: undeclared name: `Middleware` (typecheck) +func PoweredByHeader(opts ...PoweredByHeaderOption) Middleware { + ^ +net/http/middleware/poweredbyheader.go:53:62: undeclared name: `Middleware` (typecheck) +func PoweredByHeaderWithOptions(opts PoweredByHeaderOptions) Middleware { + ^ +------ +2021-11-19 08:11:44 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/poweredbyheader.go:28:53: undeclared name: `Middleware` (typecheck) +func PoweredByHeader(opts ...PoweredByHeaderOption) Middleware { + ^ +net/http/middleware/poweredbyheader.go:53:62: undeclared name: `Middleware` (typecheck) +func PoweredByHeaderWithOptions(opts PoweredByHeaderOptions) Middleware { + ^ +------ +2021-11-19 08:11:44 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 08:11:44 [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 08:11:44 [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: go +2021-11-19 08:11:44 [INFO] --------------------------- +2021-11-19 08:11:44 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 08:11:45 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:45 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:45 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/recover.go:36:37: undeclared name: `Middleware` (typecheck) +func Recover(opts ...RecoverOption) Middleware { + ^ +net/http/middleware/recover.go:47:46: undeclared name: `Middleware` (typecheck) +func RecoverWithOptions(opts RecoverOptions) Middleware { + ^ +------ +2021-11-19 08:11:45 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/recover.go:36:37: undeclared name: `Middleware` (typecheck) +func Recover(opts ...RecoverOption) Middleware { + ^ +net/http/middleware/recover.go:47:46: undeclared name: `Middleware` (typecheck) +func RecoverWithOptions(opts RecoverOptions) Middleware { + ^ +------ +2021-11-19 08:11:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 08:11: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 08:11: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: go +2021-11-19 08:11:45 [INFO] --------------------------- +2021-11-19 08:11:45 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 08:11:47 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:47 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/requestid.go:58:41: undeclared name: `Middleware` (typecheck) +func RequestID(opts ...RequestIDOption) Middleware { + ^ +net/http/middleware/requestid.go:69:50: undeclared name: `Middleware` (typecheck) +func RequestIDWithOptions(opts RequestIDOptions) Middleware { + ^ +------ +2021-11-19 08:11:47 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/requestid.go:58:41: undeclared name: `Middleware` (typecheck) +func RequestID(opts ...RequestIDOption) Middleware { + ^ +net/http/middleware/requestid.go:69:50: undeclared name: `Middleware` (typecheck) +func RequestIDWithOptions(opts RequestIDOptions) Middleware { + ^ +------ +2021-11-19 08:11:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 08:11: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 08:11: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: go +2021-11-19 08:11:47 [INFO] --------------------------- +2021-11-19 08:11:47 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 08:11:49 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:49 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/requesturiblacklistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIBlacklistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 08:11:49 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/requesturiblacklistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIBlacklistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 08:11:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 08:11:49 [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 08:11:49 [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: go +2021-11-19 08:11:49 [INFO] --------------------------- +2021-11-19 08:11:49 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 08:11:51 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:51 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/requesturiwhitelistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIWhitelistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 08:11:51 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/requesturiwhitelistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIWhitelistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 08:11:51 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 08:11:51 [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 08:11:51 [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: go +2021-11-19 08:11:51 [INFO] --------------------------- +2021-11-19 08:11:51 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 08:11:53 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:53 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/responsetime.go:51:47: undeclared name: `Middleware` (typecheck) +func ResponseTime(opts ...ResponseTimeOption) Middleware { + ^ +net/http/middleware/responsetime.go:62:56: undeclared name: `Middleware` (typecheck) +func ResponseTimeWithOptions(opts ResponseTimeOptions) Middleware { + ^ +net/http/middleware/responsetime.go:66:10: undeclared name: `WrapResponseWriter` (typecheck) + rw := WrapResponseWriter(w) + ^ +------ +2021-11-19 08:11:53 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/responsetime.go:51:47: undeclared name: `Middleware` (typecheck) +func ResponseTime(opts ...ResponseTimeOption) Middleware { + ^ +net/http/middleware/responsetime.go:62:56: undeclared name: `Middleware` (typecheck) +func ResponseTimeWithOptions(opts ResponseTimeOptions) Middleware { + ^ +net/http/middleware/responsetime.go:66:10: undeclared name: `WrapResponseWriter` (typecheck) + rw := WrapResponseWriter(w) + ^ +------ +2021-11-19 08:11:53 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 08:11:53 [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 08:11:53 [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: go +2021-11-19 08:11:53 [INFO] --------------------------- +2021-11-19 08:11:53 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 08:11:55 [INFO] - File:[responsewriter.go] was linted with [golangci-lint] successfully +2021-11-19 08:11:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:11:55 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 08:11:55 [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 08:11:55 [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: go +2021-11-19 08:11:55 [INFO] --------------------------- +2021-11-19 08:11:55 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 08:11:57 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:57 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/serverheader.go:27:47: undeclared name: `Middleware` (typecheck) +func ServerHeader(opts ...ServerHeaderOption) Middleware { + ^ +net/http/middleware/serverheader.go:52:56: undeclared name: `Middleware` (typecheck) +func ServerHeaderWithOptions(opts ServerHeaderOptions) Middleware { + ^ +------ +2021-11-19 08:11:57 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/serverheader.go:27:47: undeclared name: `Middleware` (typecheck) +func ServerHeader(opts ...ServerHeaderOption) Middleware { + ^ +net/http/middleware/serverheader.go:52:56: undeclared name: `Middleware` (typecheck) +func ServerHeaderWithOptions(opts ServerHeaderOptions) Middleware { + ^ +------ +2021-11-19 08:11:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 08:11: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 08:11: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: go +2021-11-19 08:11:57 [INFO] --------------------------- +2021-11-19 08:11:57 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 08:11:58 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:11:58 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:11:58 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/sessionid.go:101:41: undeclared name: `Middleware` (typecheck) +func SessionID(opts ...SessionIDOption) Middleware { + ^ +net/http/middleware/sessionid.go:112:50: undeclared name: `Middleware` (typecheck) +func SessionIDWithOptions(opts SessionIDOptions) Middleware { + ^ +------ +2021-11-19 08:11:59 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/sessionid.go:101:41: undeclared name: `Middleware` (typecheck) +func SessionID(opts ...SessionIDOption) Middleware { + ^ +net/http/middleware/sessionid.go:112:50: undeclared name: `Middleware` (typecheck) +func SessionIDWithOptions(opts SessionIDOptions) Middleware { + ^ +------ +2021-11-19 08:11:59 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 08:11:59 [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 08:11:59 [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: go +2021-11-19 08:11:59 [INFO] --------------------------- +2021-11-19 08:11:59 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 08:12:00 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:00 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/skip.go:9:14: undeclared name: `Middleware` (typecheck) +func Skip(mw Middleware, skippers ...Skipper) Middleware { + ^ +------ +2021-11-19 08:12:00 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/skip.go:9:14: undeclared name: `Middleware` (typecheck) +func Skip(mw Middleware, skippers ...Skipper) Middleware { + ^ +------ +2021-11-19 08:12:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 08:12:00 [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 08:12:00 [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: go +2021-11-19 08:12:00 [INFO] --------------------------- +2021-11-19 08:12:00 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 08:12:02 [INFO] - File:[skipper.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 08:12:02 [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 08:12:02 [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: go +2021-11-19 08:12:02 [INFO] --------------------------- +2021-11-19 08:12:02 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 08:12:04 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:04 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:04 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/telemetry.go:26:41: undeclared name: `Middleware` (typecheck) +func Telemetry(opts ...TelemetryOption) Middleware { + ^ +net/http/middleware/telemetry.go:50:50: undeclared name: `Middleware` (typecheck) +func TelemetryWithOptions(opts TelemetryOptions) Middleware { + ^ +------ +2021-11-19 08:12:04 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/telemetry.go:26:41: undeclared name: `Middleware` (typecheck) +func Telemetry(opts ...TelemetryOption) Middleware { + ^ +net/http/middleware/telemetry.go:50:50: undeclared name: `Middleware` (typecheck) +func TelemetryWithOptions(opts TelemetryOptions) Middleware { + ^ +------ +2021-11-19 08:12:04 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 08:12:04 [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 08:12:04 [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: go +2021-11-19 08:12:04 [INFO] --------------------------- +2021-11-19 08:12:04 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 08:12:06 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:06 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/tokenauth.go:16:17: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/tokenauth.go:29:35: undeclared name: `TokenProvider` (typecheck) +func TokenAuthWithTokenProvider(v TokenProvider) TokenAuthOption { + ^ +net/http/middleware/tokenauth.go:36:55: undeclared name: `Middleware` (typecheck) +func TokenAuth(token string, opts ...TokenAuthOption) Middleware { + ^ +net/http/middleware/tokenauth.go:47:64: undeclared name: `Middleware` (typecheck) +func TokenAuthWithOptions(token string, opts TokenAuthOptions) Middleware { + ^ +net/http/middleware/tokenauth.go:24:18: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 08:12:06 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/tokenauth.go:16:17: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/tokenauth.go:29:35: undeclared name: `TokenProvider` (typecheck) +func TokenAuthWithTokenProvider(v TokenProvider) TokenAuthOption { + ^ +net/http/middleware/tokenauth.go:36:55: undeclared name: `Middleware` (typecheck) +func TokenAuth(token string, opts ...TokenAuthOption) Middleware { + ^ +net/http/middleware/tokenauth.go:47:64: undeclared name: `Middleware` (typecheck) +func TokenAuthWithOptions(token string, opts TokenAuthOptions) Middleware { + ^ +net/http/middleware/tokenauth.go:24:18: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 08:12:06 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 08:12:06 [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 08:12:06 [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: go +2021-11-19 08:12:06 [INFO] --------------------------- +2021-11-19 08:12:06 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 08:12:08 [INFO] - File:[tokenprovider.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 08:12: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 08:12: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: go +2021-11-19 08:12:08 [INFO] --------------------------- +2021-11-19 08:12:08 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 08:12:09 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:09 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:09 [ERROR] Error code: 1. Command output: +------ +net/stream/jetstream/publisher.go:9:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 08:12:09 [DEBUG] Error code: 1. Command output: +------ +net/stream/jetstream/publisher.go:9:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 08:12:09 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 08:12: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 08:12: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: go +2021-11-19 08:12:09 [INFO] --------------------------- +2021-11-19 08:12:09 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 08:12:11 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:11 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:11 [ERROR] Error code: 1. Command output: +------ +net/stream/jetstream/stream.go:26:25: undeclared name: `Publisher` (typecheck) + PublisherOption func(*Publisher) + ^ +net/stream/jetstream/stream.go:27:25: undeclared name: `Subscriber` (typecheck) + SubscriberOption func(*Subscriber) + ^ +net/stream/jetstream/stream.go:56:35: undeclared name: `MarshalFn` (typecheck) +func PublisherWithMarshal(marshal MarshalFn) PublisherOption { + ^ +net/stream/jetstream/stream.go:80:40: undeclared name: `UnmarshalFn` (typecheck) +func SubscriberWithUnmarshal(unmarshal UnmarshalFn) SubscriberOption { + ^ +net/stream/jetstream/stream.go:167:70: undeclared name: `Publisher` (typecheck) +func (s *Stream) Publisher(subject string, opts ...PublisherOption) *Publisher { + ^ +net/stream/jetstream/stream.go:182:72: undeclared name: `Subscriber` (typecheck) +func (s *Stream) Subscriber(subject string, opts ...SubscriberOption) *Subscriber { + ^ +net/stream/jetstream/stream.go:51:17: undeclared name: `Publisher` (typecheck) + return func(o *Publisher) { + ^ +net/stream/jetstream/stream.go:69:17: undeclared name: `Subscriber` (typecheck) + return func(o *Subscriber) { + ^ +------ +2021-11-19 08:12:11 [DEBUG] Error code: 1. Command output: +------ +net/stream/jetstream/stream.go:26:25: undeclared name: `Publisher` (typecheck) + PublisherOption func(*Publisher) + ^ +net/stream/jetstream/stream.go:27:25: undeclared name: `Subscriber` (typecheck) + SubscriberOption func(*Subscriber) + ^ +net/stream/jetstream/stream.go:56:35: undeclared name: `MarshalFn` (typecheck) +func PublisherWithMarshal(marshal MarshalFn) PublisherOption { + ^ +net/stream/jetstream/stream.go:80:40: undeclared name: `UnmarshalFn` (typecheck) +func SubscriberWithUnmarshal(unmarshal UnmarshalFn) SubscriberOption { + ^ +net/stream/jetstream/stream.go:167:70: undeclared name: `Publisher` (typecheck) +func (s *Stream) Publisher(subject string, opts ...PublisherOption) *Publisher { + ^ +net/stream/jetstream/stream.go:182:72: undeclared name: `Subscriber` (typecheck) +func (s *Stream) Subscriber(subject string, opts ...SubscriberOption) *Subscriber { + ^ +net/stream/jetstream/stream.go:51:17: undeclared name: `Publisher` (typecheck) + return func(o *Publisher) { + ^ +net/stream/jetstream/stream.go:69:17: undeclared name: `Subscriber` (typecheck) + return func(o *Subscriber) { + ^ +------ +2021-11-19 08:12:11 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 08:12:11 [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 08:12:11 [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: go +2021-11-19 08:12:11 [INFO] --------------------------- +2021-11-19 08:12:11 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 08:12:13 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:13 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:13 [ERROR] Error code: 1. Command output: +------ +net/stream/jetstream/subscriber.go:14:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 08:12:13 [DEBUG] Error code: 1. Command output: +------ +net/stream/jetstream/subscriber.go:14:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 08:12:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 08:12: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 08:12: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: go +2021-11-19 08:12:13 [INFO] --------------------------- +2021-11-19 08:12:13 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 08:12:15 [INFO] - File:[middleware.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:15 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 08:12: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 08:12:15 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:15 [INFO] --------------------------- +2021-11-19 08:12:15 [INFO] File:[/tmp/lint/option.go] +2021-11-19 08:12:17 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:17 [ERROR] Error code: 1. Command output: +------ +option.go:14:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +option.go:18:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:25:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:55:20: undeclared name: `NewDefaultServiceHTTPZap` (typecheck) + inst.AddService(NewDefaultServiceHTTPZap()) + ^ +option.go:64:20: undeclared name: `NewDefaultServiceHTTPViper` (typecheck) + inst.AddService(NewDefaultServiceHTTPViper()) + ^ +option.go:73:20: undeclared name: `NewDefaultServiceHTTPPrometheus` (typecheck) + inst.AddService(NewDefaultServiceHTTPPrometheus()) + ^ +------ +2021-11-19 08:12:17 [DEBUG] Error code: 1. Command output: +------ +option.go:14:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +option.go:18:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:25:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:55:20: undeclared name: `NewDefaultServiceHTTPZap` (typecheck) + inst.AddService(NewDefaultServiceHTTPZap()) + ^ +option.go:64:20: undeclared name: `NewDefaultServiceHTTPViper` (typecheck) + inst.AddService(NewDefaultServiceHTTPViper()) + ^ +option.go:73:20: undeclared name: `NewDefaultServiceHTTPPrometheus` (typecheck) + inst.AddService(NewDefaultServiceHTTPPrometheus()) + ^ +------ +2021-11-19 08:12:17 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 08:12: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 08:12:17 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:17 [INFO] --------------------------- +2021-11-19 08:12:17 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 08:12:21 [INFO] - File:[error.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:21 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 08:12:21 [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 08:12:21 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:21 [INFO] --------------------------- +2021-11-19 08:12:21 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 08:12:24 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:24 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:24 [ERROR] Error code: 1. Command output: +------ +persistence/mongo/collection.go:150:68: undeclared name: `Entity` (typecheck) +func (c *Collection) Upsert(ctx context.Context, id string, entity Entity) error { + ^ +persistence/mongo/collection.go:218:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:240:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:255:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +------ +2021-11-19 08:12:24 [DEBUG] Error code: 1. Command output: +------ +persistence/mongo/collection.go:150:68: undeclared name: `Entity` (typecheck) +func (c *Collection) Upsert(ctx context.Context, id string, entity Entity) error { + ^ +persistence/mongo/collection.go:218:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:240:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:255:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +------ +2021-11-19 08:12:24 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 08:12: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 08:12: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: go +2021-11-19 08:12:24 [INFO] --------------------------- +2021-11-19 08:12:24 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 08:12:26 [INFO] - File:[entity.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:26 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 08:12: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 08:12: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: go +2021-11-19 08:12:26 [INFO] --------------------------- +2021-11-19 08:12:26 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 08:12:28 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:28 [ERROR] Error code: 1. Command output: +------ +persistence/mongo/persistor.go:122:52: undeclared name: `CollectionOption` (typecheck) +func (p Persistor) Collection(name string, opts ...CollectionOption) (*Collection, error) { + ^ +persistence/mongo/persistor.go:123:9: undeclared name: `NewCollection` (typecheck) + return NewCollection(p.db, name, opts...) + ^ +------ +2021-11-19 08:12:28 [DEBUG] Error code: 1. Command output: +------ +persistence/mongo/persistor.go:122:52: undeclared name: `CollectionOption` (typecheck) +func (p Persistor) Collection(name string, opts ...CollectionOption) (*Collection, error) { + ^ +persistence/mongo/persistor.go:123:9: undeclared name: `NewCollection` (typecheck) + return NewCollection(p.db, name, opts...) + ^ +------ +2021-11-19 08:12:28 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 08:12:28 [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 08:12:28 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:28 [INFO] --------------------------- +2021-11-19 08:12:28 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 08:12:30 [INFO] - File:[utils.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:30 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 08:12:30 [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 08:12:30 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:30 [INFO] --------------------------- +2021-11-19 08:12:30 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 08:12:32 [INFO] - File:[persistor.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:32 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 08:12:32 [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 08:12:32 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:32 [INFO] --------------------------- +2021-11-19 08:12:32 [INFO] File:[/tmp/lint/server.go] +2021-11-19 08:12:35 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:35 [ERROR] Error code: 1. Command output: +------ +server.go:23:20: undeclared name: `Service` (typecheck) + services []Service + ^ +server.go:31:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +server.go:62:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +server.go:69:37: undeclared name: `Service` (typecheck) +func (s *Server) AddService(service Service) { + ^ +server.go:88:7: undeclared name: `Closer` (typecheck) + case Closer, + ^ +server.go:89:3: undeclared name: `ErrorCloser` (typecheck) + ErrorCloser, + ^ +server.go:90:3: undeclared name: `CloserWithContext` (typecheck) + CloserWithContext, + ^ +server.go:91:3: undeclared name: `ErrorCloserWithContext` (typecheck) + ErrorCloserWithContext, + ^ +server.go:92:3: undeclared name: `Shutdowner` (typecheck) + Shutdowner, + ^ +server.go:93:3: undeclared name: `ErrorShutdowner` (typecheck) + ErrorShutdowner, + ^ +server.go:94:3: undeclared name: `ShutdownerWithContext` (typecheck) + ShutdownerWithContext, + ^ +server.go:95:3: undeclared name: `ErrorShutdownerWithContext` (typecheck) + ErrorShutdownerWithContext, + ^ +server.go:96:3: undeclared name: `Unsubscriber` (typecheck) + Unsubscriber, + ^ +server.go:97:3: undeclared name: `ErrorUnsubscriber` (typecheck) + ErrorUnsubscriber, + ^ +server.go:98:3: undeclared name: `UnsubscriberWithContext` (typecheck) + UnsubscriberWithContext, + ^ +server.go:99:3: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + ErrorUnsubscriberWithContext: + ^ +server.go:146:9: undeclared name: `Closer` (typecheck) + case Closer: + ^ +server.go:148:9: undeclared name: `ErrorCloser` (typecheck) + case ErrorCloser: + ^ +server.go:153:9: undeclared name: `CloserWithContext` (typecheck) + case CloserWithContext: + ^ +server.go:155:9: undeclared name: `ErrorCloserWithContext` (typecheck) + case ErrorCloserWithContext: + ^ +server.go:160:9: undeclared name: `Shutdowner` (typecheck) + case Shutdowner: + ^ +server.go:162:9: undeclared name: `ErrorShutdowner` (typecheck) + case ErrorShutdowner: + ^ +server.go:167:9: undeclared name: `ShutdownerWithContext` (typecheck) + case ShutdownerWithContext: + ^ +server.go:169:9: undeclared name: `ErrorShutdownerWithContext` (typecheck) + case ErrorShutdownerWithContext: + ^ +server.go:174:9: undeclared name: `Unsubscriber` (typecheck) + case Unsubscriber: + ^ +server.go:176:9: undeclared name: `ErrorUnsubscriber` (typecheck) + case ErrorUnsubscriber: + ^ +server.go:181:9: undeclared name: `UnsubscriberWithContext` (typecheck) + case UnsubscriberWithContext: + ^ +server.go:183:9: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + case ErrorUnsubscriberWithContext: + ^ +------ +2021-11-19 08:12:35 [DEBUG] Error code: 1. Command output: +------ +server.go:23:20: undeclared name: `Service` (typecheck) + services []Service + ^ +server.go:31:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +server.go:62:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +server.go:69:37: undeclared name: `Service` (typecheck) +func (s *Server) AddService(service Service) { + ^ +server.go:88:7: undeclared name: `Closer` (typecheck) + case Closer, + ^ +server.go:89:3: undeclared name: `ErrorCloser` (typecheck) + ErrorCloser, + ^ +server.go:90:3: undeclared name: `CloserWithContext` (typecheck) + CloserWithContext, + ^ +server.go:91:3: undeclared name: `ErrorCloserWithContext` (typecheck) + ErrorCloserWithContext, + ^ +server.go:92:3: undeclared name: `Shutdowner` (typecheck) + Shutdowner, + ^ +server.go:93:3: undeclared name: `ErrorShutdowner` (typecheck) + ErrorShutdowner, + ^ +server.go:94:3: undeclared name: `ShutdownerWithContext` (typecheck) + ShutdownerWithContext, + ^ +server.go:95:3: undeclared name: `ErrorShutdownerWithContext` (typecheck) + ErrorShutdownerWithContext, + ^ +server.go:96:3: undeclared name: `Unsubscriber` (typecheck) + Unsubscriber, + ^ +server.go:97:3: undeclared name: `ErrorUnsubscriber` (typecheck) + ErrorUnsubscriber, + ^ +server.go:98:3: undeclared name: `UnsubscriberWithContext` (typecheck) + UnsubscriberWithContext, + ^ +server.go:99:3: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + ErrorUnsubscriberWithContext: + ^ +server.go:146:9: undeclared name: `Closer` (typecheck) + case Closer: + ^ +server.go:148:9: undeclared name: `ErrorCloser` (typecheck) + case ErrorCloser: + ^ +server.go:153:9: undeclared name: `CloserWithContext` (typecheck) + case CloserWithContext: + ^ +server.go:155:9: undeclared name: `ErrorCloserWithContext` (typecheck) + case ErrorCloserWithContext: + ^ +server.go:160:9: undeclared name: `Shutdowner` (typecheck) + case Shutdowner: + ^ +server.go:162:9: undeclared name: `ErrorShutdowner` (typecheck) + case ErrorShutdowner: + ^ +server.go:167:9: undeclared name: `ShutdownerWithContext` (typecheck) + case ShutdownerWithContext: + ^ +server.go:169:9: undeclared name: `ErrorShutdownerWithContext` (typecheck) + case ErrorShutdownerWithContext: + ^ +server.go:174:9: undeclared name: `Unsubscriber` (typecheck) + case Unsubscriber: + ^ +server.go:176:9: undeclared name: `ErrorUnsubscriber` (typecheck) + case ErrorUnsubscriber: + ^ +server.go:181:9: undeclared name: `UnsubscriberWithContext` (typecheck) + case UnsubscriberWithContext: + ^ +server.go:183:9: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + case ErrorUnsubscriberWithContext: + ^ +------ +2021-11-19 08:12:35 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 08:12:35 [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 08:12:35 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:35 [INFO] --------------------------- +2021-11-19 08:12:35 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 08:12:41 [INFO] - File:[server_test.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:41 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 08:12:41 [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 08:12:41 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:41 [INFO] --------------------------- +2021-11-19 08:12:41 [INFO] File:[/tmp/lint/service.go] +2021-11-19 08:12:42 [INFO] - File:[service.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:42 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 08:12: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 08:12:42 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:42 [INFO] --------------------------- +2021-11-19 08:12:42 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 08:12:45 [INFO] - File:[servicehttp.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:45 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 08:12:45 [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 08:12:45 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:45 [INFO] --------------------------- +2021-11-19 08:12:45 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 08:12:47 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:47 [ERROR] Error code: 1. Command output: +------ +servicehttpprometheus.go:19:72: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPPrometheus(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpprometheus.go:30:41: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPPrometheus() *ServiceHTTP { + ^ +servicehttpprometheus.go:27:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 08:12:47 [DEBUG] Error code: 1. Command output: +------ +servicehttpprometheus.go:19:72: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPPrometheus(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpprometheus.go:30:41: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPPrometheus() *ServiceHTTP { + ^ +servicehttpprometheus.go:27:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 08:12:47 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 08:12:47 [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 08:12:47 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:47 [INFO] --------------------------- +2021-11-19 08:12:47 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 08:12:49 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:49 [ERROR] Error code: 1. Command output: +------ +servicehttpviper.go:20:83: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPViper(l *zap.Logger, c *viper.Viper, name, addr, path string) *ServiceHTTP { + ^ +servicehttpviper.go:50:36: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPViper() *ServiceHTTP { + ^ +servicehttpviper.go:47:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 08:12:49 [DEBUG] Error code: 1. Command output: +------ +servicehttpviper.go:20:83: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPViper(l *zap.Logger, c *viper.Viper, name, addr, path string) *ServiceHTTP { + ^ +servicehttpviper.go:50:36: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPViper() *ServiceHTTP { + ^ +servicehttpviper.go:47:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 08:12:49 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 08:12:49 [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 08:12:49 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:49 [INFO] --------------------------- +2021-11-19 08:12:49 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 08:12:51 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:51 [ERROR] Error code: 1. Command output: +------ +servicehttpzap.go:20:65: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPZap(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpzap.go:97:34: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPZap() *ServiceHTTP { + ^ +servicehttpzap.go:94:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 08:12:51 [DEBUG] Error code: 1. Command output: +------ +servicehttpzap.go:20:65: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPZap(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpzap.go:97:34: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPZap() *ServiceHTTP { + ^ +servicehttpzap.go:94:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 08:12:51 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 08:12: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 08:12:51 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:51 [INFO] --------------------------- +2021-11-19 08:12:51 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 08:12:53 [INFO] - File:[error.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:53 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 08:12: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 08:12:53 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:53 [INFO] --------------------------- +2021-11-19 08:12:53 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 08:12:55 [INFO] - File:[meter.go] was linted with [golangci-lint] successfully +2021-11-19 08:12:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:12:55 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 08:12: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 08:12:55 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:55 [INFO] --------------------------- +2021-11-19 08:12:55 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 08:12:57 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:57 [ERROR] Error code: 1. Command output: +------ +telemetry/span.go:11:9: undeclared name: `tracer` (typecheck) + return tracer.Start(ctx, spanName, opts...) + ^ +------ +2021-11-19 08:12:57 [DEBUG] Error code: 1. Command output: +------ +telemetry/span.go:11:9: undeclared name: `tracer` (typecheck) + return tracer.Start(ctx, spanName, opts...) + ^ +------ +2021-11-19 08:12:57 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 08:12: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 08:12:57 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:57 [INFO] --------------------------- +2021-11-19 08:12:57 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 08:12:59 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:12:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:12:59 [ERROR] Error code: 1. Command output: +------ +telemetry/telemetry.go:38:17: undeclared name: `ErrorHandler` (typecheck) + errorHandler *ErrorHandler + ^ +telemetry/telemetry.go:47:18: undeclared name: `ErrorHandler` (typecheck) + errorHandler = &ErrorHandler{} + ^ +------ +2021-11-19 08:12:59 [DEBUG] Error code: 1. Command output: +------ +telemetry/telemetry.go:38:17: undeclared name: `ErrorHandler` (typecheck) + errorHandler *ErrorHandler + ^ +telemetry/telemetry.go:47:18: undeclared name: `ErrorHandler` (typecheck) + errorHandler = &ErrorHandler{} + ^ +------ +2021-11-19 08:12:59 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 08:12:59 [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 08:12:59 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:12:59 [INFO] --------------------------- +2021-11-19 08:12:59 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 08:13:01 [INFO] - File:[client.go] was linted with [golangci-lint] successfully +2021-11-19 08:13:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:13:01 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 08:13: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 08:13:01 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:13:01 [INFO] --------------------------- +2021-11-19 08:13:01 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 08:13:03 [INFO] - File:[log.go] was linted with [golangci-lint] successfully +2021-11-19 08:13:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:13:03 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 08:13:03 [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 08:13:03 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:13:03 [INFO] --------------------------- +2021-11-19 08:13:03 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 08:13:05 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:13:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:13:05 [ERROR] Error code: 1. Command output: +------ +test/option.go:11:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +test/option.go:15:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +test/option.go:22:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +------ +2021-11-19 08:13:05 [DEBUG] Error code: 1. Command output: +------ +test/option.go:11:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +test/option.go:15:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +test/option.go:22:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +------ +2021-11-19 08:13:05 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 08:13: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 08:13:05 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:13:05 [INFO] --------------------------- +2021-11-19 08:13:05 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 08:13:08 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 08:13:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 08:13:08 [ERROR] Error code: 1. Command output: +------ +test/server.go:13:15: undeclared name: `Service` (typecheck) + services []Service + ^ +test/server.go:14:24: undeclared name: `Service` (typecheck) + serviceMap map[string]Service + ^ +test/server.go:20:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +test/server.go:50:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +------ +2021-11-19 08:13:08 [DEBUG] Error code: 1. Command output: +------ +test/server.go:13:15: undeclared name: `Service` (typecheck) + services []Service + ^ +test/server.go:14:24: undeclared name: `Service` (typecheck) + serviceMap map[string]Service + ^ +test/server.go:20:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +test/server.go:50:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +------ +2021-11-19 08:13:08 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 08:13:08 [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 08:13:08 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:13:08 [INFO] --------------------------- +2021-11-19 08:13:08 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 08:13:10 [INFO] - File:[service.go] was linted with [golangci-lint] successfully +2021-11-19 08:13:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:13:10 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 08:13: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 08:13:10 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 08:13:10 [INFO] --------------------------- +2021-11-19 08:13:10 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 08:13:12 [INFO] - File:[servicehttp.go] was linted with [golangci-lint] successfully +2021-11-19 08:13:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:13:12 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 08:13: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 08:13:12 [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: go +2021-11-19 08:13:12 [INFO] --------------------------- +2021-11-19 08:13:12 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 08:13:14 [INFO] - File:[basicauth.go] was linted with [golangci-lint] successfully +2021-11-19 08:13:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:13:14 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 08:13:14 [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 08:13:14 [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: go +2021-11-19 08:13:14 [INFO] --------------------------- +2021-11-19 08:13:14 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 08:13:16 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 08:13:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:13:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 08:13: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 08:13: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: go +2021-11-19 08:13:16 [INFO] --------------------------- +2021-11-19 08:13:16 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 08:13:18 [INFO] - File:[request.go] was linted with [golangci-lint] successfully +2021-11-19 08:13:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 08:13:18 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the GROOVY language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the HTML language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the JAVA language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the JSCPD language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the JSON language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the JSONC language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the JSX language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the LATEX language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the LUA language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PERL language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the R language... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 08:13:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:18 [DEBUG] Running linter for the RAKU language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the RUBY language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the STATES language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the SQL language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the TEKTON language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the TSX language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the XML language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [DEBUG] Running linter for the YAML language... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 08:13:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 08:13:19 [INFO] ---------------------------------------------- +2021-11-19 08:13:19 [INFO] ---------------------------------------------- +2021-11-19 08:13:19 [INFO] The script has completed +2021-11-19 08:13:19 [INFO] ---------------------------------------------- +2021-11-19 08:13:19 [INFO] ---------------------------------------------- +2021-11-19 08:13:19 [ERROR] ERRORS FOUND in GO:[46] +2021-11-19 08:13:19 [DEBUG] Calling Multi-Status API for GO with status error +2021-11-19 08:13:19 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 09:41:50 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 09:41:50 [INFO] --------------------------------------------- +2021-11-19 09:41:50 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 09:41:50 [INFO] - Image Creation Date:[] +2021-11-19 09:41:50 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 09:41:50 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 09:41:50 [INFO] --------------------------------------------- +2021-11-19 09:41:50 [INFO] --------------------------------------------- +2021-11-19 09:41:50 [INFO] The Super-Linter source code can be found at: +2021-11-19 09:41:50 [INFO] - https://github.com/github/super-linter +2021-11-19 09:41:50 [INFO] --------------------------------------------- +2021-11-19 09:41:50 [DEBUG] --------------------------------------------- +2021-11-19 09:41:50 [DEBUG] Linter Version Info: +2021-11-19 09:41: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 09:41:50 [DEBUG] --------------------------------------------- +2021-11-19 09:41:50 [INFO] -------------------------------------------- +2021-11-19 09:41:50 [INFO] Gathering GitHub information... +2021-11-19 09:41:50 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 09:41:50 [INFO] bypassing GitHub Actions variables... +2021-11-19 09:41:50 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 09:41:50 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 09:41:50 [INFO] -------------------------------------------- +2021-11-19 09:41:50 [INFO] Gathering user validation information... +2021-11-19 09:41:50 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 09:41:50 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 09:41:50 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 09:41:50 [DEBUG] Defining variables for GO linter... +2021-11-19 09:41:50 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 09:41:50 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 09:41:50 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 09:41:50 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 09:41:50 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 09:41:50 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 09:41:50 [DEBUG] - Validating [GO] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [R] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 09:41:50 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 09:41:51 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 09:41:51 [DEBUG] --- DEBUG INFO --- +2021-11-19 09:41:51 [DEBUG] --------------------------------------------- +2021-11-19 09:41:51 [DEBUG] Runner:[root] +2021-11-19 09:41:51 [DEBUG] ENV: +2021-11-19 09:41: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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=175e7fb34bf4 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.fTA7MEqg8o +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 09:41:51 [DEBUG] --------------------------------------------- +2021-11-19 09:41:51 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:51 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 09:41:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:51 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 09:41:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 09:41: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 09:41: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 09:41:51 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 09:41:51 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 09:41:51 [DEBUG] Loading rules for ARM... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for ARM... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:51 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 09:41:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:51 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 09:41:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 09:41: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 09:41:51 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 09:41:51 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 09:41:51 [DEBUG] Loading rules for BASH... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for BASH... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 09:41:51 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 09:41:51 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 09:41:51 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:51 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 09:41:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:51 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 09:41:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 09:41:51 [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 09:41:51 [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 09:41:51 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 09:41:51 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 09:41:51 [DEBUG] Loading rules for CLOJURE... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:51 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 09:41:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:51 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 09:41:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 09:41:51 [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 09:41:51 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 09:41:51 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 09:41:51 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:51 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 09:41:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:51 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 09:41:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 09:41:51 [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 09:41:51 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 09:41:51 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 09:41:51 [DEBUG] Loading rules for CPP... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for CPP... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 09:41:51 [DEBUG] Loading rules for CSHARP... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 09:41:51 [DEBUG] Loading rules for CSS... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for CSS... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:51 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 09:41:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:51 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 09:41:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 09:41:51 [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 09:41:51 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 09:41:51 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 09:41:51 [DEBUG] Loading rules for DART... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for DART... +2021-11-19 09:41:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:51 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 09:41:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:51 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 09:41:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:51 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 09:41:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 09:41:51 [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 09:41:51 [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 09:41:51 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 09:41:51 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 09:41:51 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 09:41:51 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 09:41: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 09:41:52 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 09:41:52 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 09:41: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 09:41: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 09:41:52 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 09:41:52 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 09:41: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 09:41:52 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 09:41:52 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for ENV... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for ENV... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 09:41:52 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 09:41: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 09:41: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 09:41:52 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 09:41:52 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 09:41: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 09:41:52 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 09:41:52 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for GHERKIN... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 09:41: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 09:41:52 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 09:41:52 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for GO... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for GO... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 09:41:52 [INFO] ---------------------------------------------- +2021-11-19 09:41:52 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 09:41:52 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 09:41:52 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:41:52 [DEBUG] Loading rules for GROOVY... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 09:41: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 09:41:52 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 09:41:52 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for HTML... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for HTML... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 09:41:52 [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 09:41:52 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 09:41:52 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for JAVA... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for JAVA... +2021-11-19 09:41:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:52 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 09:41:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:52 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 09:41:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:52 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 09:41:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 09:41:52 [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 09:41:52 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 09:41:52 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 09:41:52 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 09:41:52 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:41:53 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:41:53 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for JSCPD... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 09:41:53 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for JSON... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for JSON... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 09:41:53 [DEBUG] Loading rules for JSONC... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for JSONC... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 09:41:53 [DEBUG] Loading rules for JSX... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for JSX... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:41:53 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 09:41:53 [DEBUG] Loading rules for KOTLIN... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 09:41:53 [DEBUG] Loading rules for LATEX... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for LATEX... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 09:41:53 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for LUA... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for LUA... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 09:41:53 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 09:41: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 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 09:41:53 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 09:41:53 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for OPENAPI... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:53 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 09:41:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:53 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 09:41:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:53 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 09:41:53 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 09:41:53 [DEBUG] Loading rules for PERL... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for PERL... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 09:41:53 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 09:41:53 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 09:41:53 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 09:41:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:53 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 09:41:54 [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 09:41:54 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 09:41:54 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 09:41:54 [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 09:41:54 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 09:41:54 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 09:41:54 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 09:41:54 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 09:41:54 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 09:41:54 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 09:41:54 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 09:41:54 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 09:41:54 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 09:41:54 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 09:41:54 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for R... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for R... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:54 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 09:41:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:54 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 09:41:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 09:41: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 09:41:54 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 09:41:54 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 09:41:54 [DEBUG] Loading rules for RAKU... +2021-11-19 09:41:54 [DEBUG] Getting linter rules for RAKU... +2021-11-19 09:41:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:54 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 09:41:54 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 09:41:55 [DEBUG] Loading rules for RUBY... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for RUBY... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 09:41: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 09:41: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 09:41:55 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 09:41:55 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for RUST_2015... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 09:41:55 [DEBUG] Loading rules for RUST_2018... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 09:41:55 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 09:41:55 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 09:41: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 09:41:55 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 09:41:55 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 09:41:55 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 09:41:55 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 09:41:55 [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 09:41:55 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 09:41:55 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for STATES... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for STATES... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 09:41:55 [DEBUG] Loading rules for SQL... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for SQL... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 09:41: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 09:41:55 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 09:41:55 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 09:41:55 [DEBUG] Loading rules for TEKTON... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 09:41:55 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 09:41: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 09:41:55 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 09:41:55 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 09:41: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 09:41:55 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 09:41:55 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 09:41:55 [DEBUG] Loading rules for TSX... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for TSX... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:55 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:41:55 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:41:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:55 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:41:55 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:41:55 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 09:41:55 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 09:41:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:55 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 09:41:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:55 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:41:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:41:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:41: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 09:41: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 09:41:56 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:41:56 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:41:56 [DEBUG] Loading rules for XML... +2021-11-19 09:41:56 [DEBUG] Getting linter rules for XML... +2021-11-19 09:41:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:56 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 09:41:56 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 09:41:56 [DEBUG] Loading rules for YAML... +2021-11-19 09:41:56 [DEBUG] Getting linter rules for YAML... +2021-11-19 09:41:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:41:56 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 09:41:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:41:56 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 09:41:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:41:56 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 09:41:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 09:41: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 09:41: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 09:41:56 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 09:41:56 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 09:41:56 [DEBUG] ENV:[browser] +2021-11-19 09:41:56 [DEBUG] ENV:[es6] +2021-11-19 09:41:56 [DEBUG] ENV:[jest] +2021-11-19 09:41:56 [DEBUG] ENV:[browser] +2021-11-19 09:41:56 [DEBUG] ENV:[es6] +2021-11-19 09:41:56 [DEBUG] ENV:[jest] +2021-11-19 09:41:56 [DEBUG] --- Linter commands --- +2021-11-19 09:41:56 [DEBUG] ----------------------- +2021-11-19 09:41:56 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 09:41:56 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 09:41:56 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 09:41:56 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 09:41:56 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 09:41:56 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:41:56 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 09:41:56 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 09:41:56 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 09:41:56 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 09:41:56 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 09:41: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 09:41:56 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 09:41:56 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 09:41:56 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 09:41:56 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 09:41:56 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 09:41:56 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 09:41:56 [DEBUG] Linter key: R, command: lintr +2021-11-19 09:41:56 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 09:41:56 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 09:41:56 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 09:41:56 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 09:41:56 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 09:41:56 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 09:41:56 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 09:41:56 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 09:41:56 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 09:41:56 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:41:56 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 09:41:56 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 09:41:56 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 09:41:56 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 09:41:56 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 09:41:56 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 09:41:56 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 09:41:56 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 09:41:56 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 09:41:56 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 09:41:56 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 09:41: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 09:41:56 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 09:41:56 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 09:41:56 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 09:41:56 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 09:41:56 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 09:41:56 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 09:41:56 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 09:41:56 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 09:41:56 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 09:41:56 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:41: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 09:41:56 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:41:56 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 09:41:56 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 09:41:56 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 09:41:56 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 09:41:56 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 09:41:56 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 09:41:57 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 09:41:57 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 09:41:57 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 09:41:57 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 09:41:57 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 09:41:57 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 09:41:57 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 09:41:57 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 09:41:57 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 09:41:57 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 09:41:57 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 09:41:57 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 09:41:57 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 09:41:57 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 09:41:57 [DEBUG] --------------------------------------------- +2021-11-19 09:41:57 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 09:41:57 [DEBUG] Building file list... +2021-11-19 09:41:57 [DEBUG] Validate all code base: true... +2021-11-19 09:41:57 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 09:41:57 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 09:41:57 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 09:41:57 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 09:41:57 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 09:41:57 [DEBUG] ---------------------------------------------- +2021-11-19 09:41: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 09:41:57 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 09:41:57 [DEBUG] Loading the files list that Git ignores... +2021-11-19 09:41:58 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 09:41:58 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 09:41:58 [DEBUG] ----------------------- +2021-11-19 09:41:58 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 09:41:58 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 09:41:58 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 09:41:58 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 09:41:58 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 09:41:58 [DEBUG] --------------------------------------------- +2021-11-19 09:41:58 [INFO] --------------------------------- +2021-11-19 09:41:58 [INFO] ------ File list to check: ------ +2021-11-19 09:41:58 [INFO] --------------------------------- +2021-11-19 09:41:58 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 09:41:58 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 09:41:59 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 09:41:59 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 09:41:59 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 09:41:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 09:41:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 09:41:59 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 09:41:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 09:41:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 09:41:59 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 09:41: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 09:41:59 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:41:59 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 09:41:59 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:41:59 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:41: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 09:41:59 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 09:41:59 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 09:42:00 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 09:42:00 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 09:42:00 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 09:42:00 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42:00 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: ASCII text] +2021-11-19 09:42:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:00 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:00 [DEBUG]  +2021-11-19 09:42:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:42:01 [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 09:42:01 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:42: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 09:42:01 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 09:42:01 [DEBUG]  +2021-11-19 09:42:01 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 09:42:01 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 09:42:01 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 09:42:02 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 09:42:02 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 09:42: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 09:42:02 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 09:42: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 09:42:02 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 09:42:02 [DEBUG]  +2021-11-19 09:42:02 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 09:42: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 09:42:02 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 09:42:03 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 09:42:03 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 09:42:03 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 09:42:03 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 09:42:03 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 09:42:03 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 09:42:03 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 09:42:03 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 09:42:03 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 09:42:03 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 09:42:03 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 09:42:03 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 09:42:03 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 09:42:03 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 09:42: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 09:42:03 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:42: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 09:42:03 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 09:42: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 09:42:03 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 09:42:03 [DEBUG]  +2021-11-19 09:42:03 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 09:42:04 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 09:42:04 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 09:42:04 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 09:42:04 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 09:42:04 [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 09:42:04 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 09:42:04 [DEBUG]  +2021-11-19 09:42:04 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:05 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 09:42:05 [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 09:42:05 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 09:42:05 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 09:42:06 [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 09:42:06 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 09:42:06 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 09:42:06 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 09:42:06 [DEBUG]  +2021-11-19 09:42:06 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 09:42:07 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 09:42:07 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 09:42:07 [DEBUG]  +2021-11-19 09:42:07 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 09:42:08 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 09:42:08 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 09:42:08 [DEBUG]  +2021-11-19 09:42:08 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 09:42:08 [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 09:42:08 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 09:42:08 [DEBUG]  +2021-11-19 09:42:08 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:42:08 [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 09:42:08 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:42:08 [DEBUG]  +2021-11-19 09:42:08 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 09:42:08 [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 09:42:08 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 09:42:08 [DEBUG]  +2021-11-19 09:42:08 [INFO] ---------------------------------------------- +2021-11-19 09:42:08 [INFO] Successfully gathered list of files... +2021-11-19 09:42:08 [DEBUG] --- ENV (before running linters) --- +2021-11-19 09:42:08 [DEBUG] ------------------------------------ +2021-11-19 09:42:08 [DEBUG] ENV: +2021-11-19 09:42:08 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=175e7fb34bf4 +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.fTA7MEqg8o +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=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 09:42:08 [DEBUG] ------------------------------------ +2021-11-19 09:42:08 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the ARM language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the BASH language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the CPP language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the CSHARP language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the CSS language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the DART language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the ENV language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 09:42:08 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 09:42:08 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 09:42:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 09:42:08 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 09:42:08 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 09:42:08 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 09:42:08 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 09:42:08 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:42:08 [DEBUG] Running linter for the GO language... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 09:42:08 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 09:42:08 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 09:42:08 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 09:42:08 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 09:42:08 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 09:42:08 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 09:42:08 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 09:42:08 [DEBUG] Workspace path: /tmp/lint +2021-11-19 09:42:08 [INFO]  +2021-11-19 09:42:08 [INFO] ---------------------------------------------- +2021-11-19 09:42:08 [INFO] ---------------------------------------------- +2021-11-19 09:42:08 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 09:42:08 [INFO] Linting [GO] files... +2021-11-19 09:42:08 [INFO] ---------------------------------------------- +2021-11-19 09:42:08 [INFO] ---------------------------------------------- +2021-11-19 09:42:08 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 09:42: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 09:42:08 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:42:08 [INFO] --------------------------- +2021-11-19 09:42:08 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 09:42:14 [INFO] - File:[closer.go] was linted with [golangci-lint] successfully +2021-11-19 09:42:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:42:14 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 09:42:15 [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 09:42:15 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:42:15 [INFO] --------------------------- +2021-11-19 09:42:15 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 09:42:31 [INFO] - File:[config.go] was linted with [golangci-lint] successfully +2021-11-19 09:42:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:42:31 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 09:42:31 [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 09:42:31 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:42:31 [INFO] --------------------------- +2021-11-19 09:42:31 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 09:42:33 [INFO] - File:[env.go] was linted with [golangci-lint] successfully +2021-11-19 09:42:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:42:33 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 09:42:33 [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 09:42:33 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:42:33 [INFO] --------------------------- +2021-11-19 09:42:33 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 09:42:34 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 09:42:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:42:34 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 09:42: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 09:42:34 [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:42:34 [INFO] --------------------------- +2021-11-19 09:42:34 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 09:43:05 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:43:05 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:43:05 [ERROR] Error code: 1. Command output: +------ +example/config/main.go:17: File is not `gofmt`-ed with `-s` (gofmt) + Int int `yaml:"int"` + Bool bool `yaml:"bool"` + String string `yaml:"string"` +------ +2021-11-19 09:43:05 [DEBUG] Error code: 1. Command output: +------ +example/config/main.go:17: File is not `gofmt`-ed with `-s` (gofmt) + Int int `yaml:"int"` + Bool bool `yaml:"bool"` + String string `yaml:"string"` +------ +2021-11-19 09:43:05 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 09:43: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 09:43:05 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:43:05 [INFO] --------------------------- +2021-11-19 09:43:05 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 09:43:06 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:43:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:43:06 [ERROR] Error code: 1. Command output: +------ +example/errors/main.go:16: unnecessary leading newline (whitespace) +func main() { +------ +2021-11-19 09:43:06 [DEBUG] Error code: 1. Command output: +------ +example/errors/main.go:16: unnecessary leading newline (whitespace) +func main() { +------ +2021-11-19 09:43:06 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 09:43:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:06 [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: go +2021-11-19 09:43:06 [INFO] --------------------------- +2021-11-19 09:43:06 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 09:43:10 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:10 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 09:43: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 09:43:10 [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: go +2021-11-19 09:43:10 [INFO] --------------------------- +2021-11-19 09:43:10 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 09:43:13 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:13 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 09:43:13 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:13 [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: go +2021-11-19 09:43:13 [INFO] --------------------------- +2021-11-19 09:43:13 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 09:43:16 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:16 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 09:43:16 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:16 [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: go +2021-11-19 09:43:16 [INFO] --------------------------- +2021-11-19 09:43:16 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 09:43:21 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:21 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 09:43:21 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:21 [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: go +2021-11-19 09:43:21 [INFO] --------------------------- +2021-11-19 09:43:21 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 09:43:25 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:25 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 09:43:25 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:25 [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: go +2021-11-19 09:43:25 [INFO] --------------------------- +2021-11-19 09:43:25 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 09:43:29 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:29 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 09:43:29 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:29 [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: go +2021-11-19 09:43:29 [INFO] --------------------------- +2021-11-19 09:43:29 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 09:43:32 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:43:32 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:43:32 [ERROR] Error code: 1. Command output: +------ +example/middlewares/requestid/main.go:40: File is not `gofmt`-ed with `-s` (gofmt) +------ +2021-11-19 09:43:32 [DEBUG] Error code: 1. Command output: +------ +example/middlewares/requestid/main.go:40: File is not `gofmt`-ed with `-s` (gofmt) +------ +2021-11-19 09:43:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 09:43: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 09:43:32 [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: go +2021-11-19 09:43:32 [INFO] --------------------------- +2021-11-19 09:43:32 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 09:43:36 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 09:43: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 09:43: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: go +2021-11-19 09:43:36 [INFO] --------------------------- +2021-11-19 09:43:36 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 09:43:39 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:39 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 09:43:39 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:39 [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: go +2021-11-19 09:43:39 [INFO] --------------------------- +2021-11-19 09:43:39 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 09:43:44 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:44 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 09:43: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 09:43:44 [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: go +2021-11-19 09:43:44 [INFO] --------------------------- +2021-11-19 09:43:44 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 09:43:47 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:47 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 09:43: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 09:43:47 [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: go +2021-11-19 09:43:47 [INFO] --------------------------- +2021-11-19 09:43:47 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 09:43:51 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:43:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:43:52 [ERROR] Error code: 1. Command output: +------ +example/middlewares/tokenauthfromcookie/main.go:10:6: `ExampleTokenAuthFromCookie` is unused (deadcode) +func ExampleTokenAuthFromCookie() { + ^ +------ +2021-11-19 09:43:52 [DEBUG] Error code: 1. Command output: +------ +example/middlewares/tokenauthfromcookie/main.go:10:6: `ExampleTokenAuthFromCookie` is unused (deadcode) +func ExampleTokenAuthFromCookie() { + ^ +------ +2021-11-19 09:43:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 09:43: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 09:43: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: go +2021-11-19 09:43:52 [INFO] --------------------------- +2021-11-19 09:43:52 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 09:43:55 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:43:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:43:55 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 09:43:55 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:43:55 [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: go +2021-11-19 09:43:55 [INFO] --------------------------- +2021-11-19 09:43:55 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 09:44:20 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:20 [DEBUG] Error code: 0. Command output: +------ +level=warning msg="[runner] Can't run linter goanalysis_metalinter: inspect: failed to load package : could not load export data: no export data for \"github.com/foomo/keel/example/persistence/mongo/repository\"" +------ +2021-11-19 09:44:20 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 09:44: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 09:44:20 [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: go +2021-11-19 09:44:20 [INFO] --------------------------- +2021-11-19 09:44:20 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 09:44:23 [INFO] - File:[dummy.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:23 [DEBUG] Error code: 0. Command output: +------ +level=warning msg="[runner] Can't run linter goanalysis_metalinter: inspect: failed to load package : could not load export data: no export data for \"github.com/foomo/keel/example/persistence/mongo/store\"" +------ +2021-11-19 09:44:23 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 09:44:23 [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 09:44:23 [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: go +2021-11-19 09:44:23 [INFO] --------------------------- +2021-11-19 09:44:23 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 09:44:26 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:44:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:44:26 [ERROR] Error code: 1. Command output: +------ +example/persistence/mongo/store/codec.go:14:29: undeclared name: `DateTime` (typecheck) + TDateTime = reflect.TypeOf(DateTime("")) + ^ +example/persistence/mongo/store/codec.go:23:25: undeclared name: `DateTime` (typecheck) + td := val.Interface().(DateTime) + ^ +example/persistence/mongo/store/codec.go:36:18: undeclared name: `DateTime` (typecheck) + var dateTimeVal DateTime + ^ +example/persistence/mongo/store/codec.go:44:17: undeclared name: `NewDateTime` (typecheck) + dateTimeVal = NewDateTime(time.UnixMilli(dt)) + ^ +------ +2021-11-19 09:44:26 [DEBUG] Error code: 1. Command output: +------ +example/persistence/mongo/store/codec.go:14:29: undeclared name: `DateTime` (typecheck) + TDateTime = reflect.TypeOf(DateTime("")) + ^ +example/persistence/mongo/store/codec.go:23:25: undeclared name: `DateTime` (typecheck) + td := val.Interface().(DateTime) + ^ +example/persistence/mongo/store/codec.go:36:18: undeclared name: `DateTime` (typecheck) + var dateTimeVal DateTime + ^ +example/persistence/mongo/store/codec.go:44:17: undeclared name: `NewDateTime` (typecheck) + dateTimeVal = NewDateTime(time.UnixMilli(dt)) + ^ +------ +2021-11-19 09:44:26 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 09:44:26 [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 09:44:26 [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: go +2021-11-19 09:44:26 [INFO] --------------------------- +2021-11-19 09:44:26 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 09:44:28 [INFO] - File:[datetime.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:28 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:44:28 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 09:44:28 [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 09:44:28 [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: go +2021-11-19 09:44:28 [INFO] --------------------------- +2021-11-19 09:44:28 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 09:44:29 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:44:29 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:44:29 [ERROR] Error code: 1. Command output: +------ +example/persistence/mongo/store/dummy.go:4:2: undeclared name: `Entity` (typecheck) + Entity `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:5:2: undeclared name: `EntityWithVersions` (typecheck) + EntityWithVersions `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:6:2: undeclared name: `EntityWithTimestamps` (typecheck) + EntityWithTimestamps `json:",inline" bson:",inline"` + ^ +------ +2021-11-19 09:44:29 [DEBUG] Error code: 1. Command output: +------ +example/persistence/mongo/store/dummy.go:4:2: undeclared name: `Entity` (typecheck) + Entity `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:5:2: undeclared name: `EntityWithVersions` (typecheck) + EntityWithVersions `json:",inline" bson:",inline"` + ^ +example/persistence/mongo/store/dummy.go:6:2: undeclared name: `EntityWithTimestamps` (typecheck) + EntityWithTimestamps `json:",inline" bson:",inline"` + ^ +------ +2021-11-19 09:44:29 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 09:44:29 [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 09:44:29 [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: go +2021-11-19 09:44:29 [INFO] --------------------------- +2021-11-19 09:44:29 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 09:44:32 [INFO] - File:[entity.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 09: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 09: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: go +2021-11-19 09:44:32 [INFO] --------------------------- +2021-11-19 09:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 09:44:34 [INFO] - File:[entitywithtimestamps.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:44:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 09:44: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 09:44: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: go +2021-11-19 09:44:34 [INFO] --------------------------- +2021-11-19 09:44:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 09:44:36 [INFO] - File:[entitywithversions.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:44:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 09:44: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 09:44:36 [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: go +2021-11-19 09:44:36 [INFO] --------------------------- +2021-11-19 09:44:36 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 09:44:48 [INFO] - File:[main.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:48 [DEBUG] Error code: 0. Command output: +------ +level=warning msg="[runner] Can't run linter goanalysis_metalinter: inspect: failed to load package : could not load export data: no export data for \"github.com/foomo/keel/example/persistence/postgres/repository\"" +------ +2021-11-19 09:44:48 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 09:44:48 [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 09:44:48 [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: go +2021-11-19 09:44:48 [INFO] --------------------------- +2021-11-19 09:44:48 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 09:44:51 [INFO] - File:[dummy.go] was linted with [golangci-lint] successfully +2021-11-19 09:44:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:44:51 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 09:44: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 09:44:51 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:44:51 [INFO] --------------------------- +2021-11-19 09:44:51 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 09:44:56 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:44:56 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:44:56 [ERROR] Error code: 1. Command output: +------ +example/services/main.go:31:2: commentFormatting: put a space between `//` and comment text (gocritic) + //svr.AddServices(keel.NewDefaultServiceHTTPZap()) + ^ +------ +2021-11-19 09:44:56 [DEBUG] Error code: 1. Command output: +------ +example/services/main.go:31:2: commentFormatting: put a space between `//` and comment text (gocritic) + //svr.AddServices(keel.NewDefaultServiceHTTPZap()) + ^ +------ +2021-11-19 09:44:56 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 09:44:56 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:44:56 [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: go +2021-11-19 09:44:56 [INFO] --------------------------- +2021-11-19 09:44:56 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 09:45:02 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:02 [ERROR] Error code: 1. Command output: +------ +example/stream/jetstream/main.go:18:6: `main` is unused (deadcode) +func main() { + ^ +example/stream/jetstream/main.go:59:7: type `Message` is unused (unused) + type Message struct { + ^ +------ +2021-11-19 09:45:02 [DEBUG] Error code: 1. Command output: +------ +example/stream/jetstream/main.go:18:6: `main` is unused (deadcode) +func main() { + ^ +example/stream/jetstream/main.go:59:7: type `Message` is unused (unused) + type Message struct { + ^ +------ +2021-11-19 09:45:02 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 09:45: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 09:45:02 [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: go +2021-11-19 09:45:02 [INFO] --------------------------- +2021-11-19 09:45:02 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 09:45:06 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:06 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:06 [ERROR] Error code: 1. Command output: +------ +example/stream/jetstreamraw/main.go:15:6: `main` is unused (deadcode) +func main() { + ^ +------ +2021-11-19 09:45:06 [DEBUG] Error code: 1. Command output: +------ +example/stream/jetstreamraw/main.go:15:6: `main` is unused (deadcode) +func main() { + ^ +------ +2021-11-19 09:45:06 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 09:45:06 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 09:45:06 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:06 [INFO] --------------------------- +2021-11-19 09:45:06 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 09:45:10 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:10 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:10 [ERROR] Error code: 1. Command output: +------ +example/telemetry/main.go:28:18: `ouput` is a misspelling of `output` (misspell) + // pretty print ouput (default: true) + ^ +------ +2021-11-19 09:45:10 [DEBUG] Error code: 1. Command output: +------ +example/telemetry/main.go:28:18: `ouput` is a misspelling of `output` (misspell) + // pretty print ouput (default: true) + ^ +------ +2021-11-19 09:45:10 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 09:45: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 09:45:10 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:10 [INFO] --------------------------- +2021-11-19 09:45:10 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 09:45:12 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:12 [ERROR] Error code: 1. Command output: +------ +jwt/jwt.go:10:7: undeclared name: `Key` (typecheck) + Key Key + ^ +jwt/jwt.go:14:29: undeclared name: `Key` (typecheck) + DeprecatedKeys map[string]Key + ^ +jwt/jwt.go:27:30: undeclared name: `Key` (typecheck) +func WithDeprecatedKeys(v ...Key) Option { + ^ +jwt/jwt.go:48:18: undeclared name: `DefaultKeyFunc` (typecheck) + inst.KeyFunc = DefaultKeyFunc(key, inst.DeprecatedKeys) + ^ +------ +2021-11-19 09:45:12 [DEBUG] Error code: 1. Command output: +------ +jwt/jwt.go:10:7: undeclared name: `Key` (typecheck) + Key Key + ^ +jwt/jwt.go:14:29: undeclared name: `Key` (typecheck) + DeprecatedKeys map[string]Key + ^ +jwt/jwt.go:27:30: undeclared name: `Key` (typecheck) +func WithDeprecatedKeys(v ...Key) Option { + ^ +jwt/jwt.go:48:18: undeclared name: `DefaultKeyFunc` (typecheck) + inst.KeyFunc = DefaultKeyFunc(key, inst.DeprecatedKeys) + ^ +------ +2021-11-19 09:45:12 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 09:45:12 [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 09:45:12 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:12 [INFO] --------------------------- +2021-11-19 09:45:12 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 09:45:14 [INFO] - File:[jwtclaims.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:14 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 09:45:14 [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 09:45:14 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:14 [INFO] --------------------------- +2021-11-19 09:45:14 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 09:45:16 [INFO] - File:[jwtkey.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:16 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 09:45:16 [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 09:45:16 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:16 [INFO] --------------------------- +2021-11-19 09:45:16 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 09:45:18 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:18 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:18 [ERROR] Error code: 1. Command output: +------ +jwt/keyfunc.go:8:25: undeclared name: `Key` (typecheck) +func DefaultKeyFunc(key Key, deprecatedKeys map[string]Key) jwt.Keyfunc { + ^ +------ +2021-11-19 09:45:18 [DEBUG] Error code: 1. Command output: +------ +jwt/keyfunc.go:8:25: undeclared name: `Key` (typecheck) +func DefaultKeyFunc(key Key, deprecatedKeys map[string]Key) jwt.Keyfunc { + ^ +------ +2021-11-19 09:45:18 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 09:45:18 [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 09:45:18 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:18 [INFO] --------------------------- +2021-11-19 09:45:18 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 09:45:19 [INFO] - File:[ldflags.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:19 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 09:45:19 [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 09:45:19 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:19 [INFO] --------------------------- +2021-11-19 09:45:19 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 09:45:21 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:21 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:21 [ERROR] Error code: 1. Command output: +------ +log/configure.go:15:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/configure.go:25:17: undeclared name: `FError` (typecheck) + c.l = c.l.With(FError(err)) + ^ +log/configure.go:35:8: undeclared name: `WithHTTPRequest` (typecheck) + c.l = WithHTTPRequest(c.l, r) + ^ +------ +2021-11-19 09:45:21 [DEBUG] Error code: 1. Command output: +------ +log/configure.go:15:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/configure.go:25:17: undeclared name: `FError` (typecheck) + c.l = c.l.With(FError(err)) + ^ +log/configure.go:35:8: undeclared name: `WithHTTPRequest` (typecheck) + c.l = WithHTTPRequest(c.l, r) + ^ +------ +2021-11-19 09:45:21 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 09:45: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 09:45:21 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:21 [INFO] --------------------------- +2021-11-19 09:45:21 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 09:45:24 [INFO] - File:[fields.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:24 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 09:45: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 09:45:24 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:24 [INFO] --------------------------- +2021-11-19 09:45:24 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 09:45:26 [INFO] - File:[fields_error.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:26 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 09:45:26 [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 09:45:26 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:26 [INFO] --------------------------- +2021-11-19 09:45:26 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 09:45:29 [INFO] - File:[fields_http.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:29 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 09:45:29 [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 09:45:29 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:29 [INFO] --------------------------- +2021-11-19 09:45:29 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 09:45:31 [INFO] - File:[fields_messaging.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:31 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 09:45:31 [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 09:45:31 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:31 [INFO] --------------------------- +2021-11-19 09:45:31 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 09:45:33 [INFO] - File:[fields_net.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:33 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 09:45: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 09:45: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: go +2021-11-19 09:45:34 [INFO] --------------------------- +2021-11-19 09:45:34 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 09:45:36 [INFO] - File:[fields_service.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:36 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 09:45:36 [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 09:45:36 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:36 [INFO] --------------------------- +2021-11-19 09:45:36 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 09:45:37 [INFO] - File:[fields_trace.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:38 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 09:45: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 09:45:38 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:38 [INFO] --------------------------- +2021-11-19 09:45:38 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 09:45:39 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:39 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:39 [ERROR] Error code: 1. Command output: +------ +log/log.go:116:16: undeclared name: `FError` (typecheck) + l.Fatal(msg, FError(err), FStackSkip(1)) + ^ +------ +2021-11-19 09:45:39 [DEBUG] Error code: 1. Command output: +------ +log/log.go:116:16: undeclared name: `FError` (typecheck) + l.Fatal(msg, FError(err), FStackSkip(1)) + ^ +------ +2021-11-19 09:45:39 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 09:45:39 [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 09:45:39 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:39 [INFO] --------------------------- +2021-11-19 09:45:39 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 09:45:42 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:42 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:42 [ERROR] Error code: 1. Command output: +------ +log/with.go:18:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/with.go:24:17: undeclared name: `FError` (typecheck) + return With(l, FError(err)) + ^ +log/with.go:28:17: undeclared name: `FHTTPServerName` (typecheck) + return With(l, FHTTPServerName(name)) + ^ +log/with.go:32:17: undeclared name: `FServiceName` (typecheck) + return With(l, FServiceName(name)) + ^ +log/with.go:37:15: undeclared name: `FTraceID` (typecheck) + l = With(l, FTraceID(spanCtx.TraceID().String())) + ^ +log/with.go:44:3: undeclared name: `FHTTPRequestContentLength` (typecheck) + FHTTPRequestContentLength(r.ContentLength), + ^ +log/with.go:45:3: undeclared name: `FHTTPMethod` (typecheck) + FHTTPMethod(r.Method), + ^ +log/with.go:46:3: undeclared name: `FHTTPUserAgent` (typecheck) + FHTTPUserAgent(r.UserAgent()), + ^ +log/with.go:47:3: undeclared name: `FHTTPTarget` (typecheck) + FHTTPTarget(r.RequestURI), + ^ +log/with.go:51:27: undeclared name: `FHTTPHost` (typecheck) + fields = append(fields, FHTTPHost(r.Host)) + ^ +log/with.go:54:27: undeclared name: `FHTTPRequestID` (typecheck) + fields = append(fields, FHTTPRequestID(id)) + ^ +log/with.go:57:27: undeclared name: `FHTTPSessionID` (typecheck) + fields = append(fields, FHTTPSessionID(id)) + ^ +log/with.go:60:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("https")) + ^ +log/with.go:62:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("http")) + ^ +log/with.go:65:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor(fmt.Sprintf("1.%d", r.ProtoMinor))) + ^ +log/with.go:67:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor("2")) + ^ +log/with.go:85:27: undeclared name: `FHTTPClientIP` (typecheck) + fields = append(fields, FHTTPClientIP(clientIP)) + ^ +log/with.go:89:27: undeclared name: `FTraceID` (typecheck) + fields = append(fields, FTraceID(spanCtx.TraceID().String())) + ^ +------ +2021-11-19 09:45:42 [DEBUG] Error code: 1. Command output: +------ +log/with.go:18:7: undeclared name: `Logger` (typecheck) + l = Logger() + ^ +log/with.go:24:17: undeclared name: `FError` (typecheck) + return With(l, FError(err)) + ^ +log/with.go:28:17: undeclared name: `FHTTPServerName` (typecheck) + return With(l, FHTTPServerName(name)) + ^ +log/with.go:32:17: undeclared name: `FServiceName` (typecheck) + return With(l, FServiceName(name)) + ^ +log/with.go:37:15: undeclared name: `FTraceID` (typecheck) + l = With(l, FTraceID(spanCtx.TraceID().String())) + ^ +log/with.go:44:3: undeclared name: `FHTTPRequestContentLength` (typecheck) + FHTTPRequestContentLength(r.ContentLength), + ^ +log/with.go:45:3: undeclared name: `FHTTPMethod` (typecheck) + FHTTPMethod(r.Method), + ^ +log/with.go:46:3: undeclared name: `FHTTPUserAgent` (typecheck) + FHTTPUserAgent(r.UserAgent()), + ^ +log/with.go:47:3: undeclared name: `FHTTPTarget` (typecheck) + FHTTPTarget(r.RequestURI), + ^ +log/with.go:51:27: undeclared name: `FHTTPHost` (typecheck) + fields = append(fields, FHTTPHost(r.Host)) + ^ +log/with.go:54:27: undeclared name: `FHTTPRequestID` (typecheck) + fields = append(fields, FHTTPRequestID(id)) + ^ +log/with.go:57:27: undeclared name: `FHTTPSessionID` (typecheck) + fields = append(fields, FHTTPSessionID(id)) + ^ +log/with.go:60:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("https")) + ^ +log/with.go:62:27: undeclared name: `FHTTPScheme` (typecheck) + fields = append(fields, FHTTPScheme("http")) + ^ +log/with.go:65:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor(fmt.Sprintf("1.%d", r.ProtoMinor))) + ^ +log/with.go:67:27: undeclared name: `FHTTPFlavor` (typecheck) + fields = append(fields, FHTTPFlavor("2")) + ^ +log/with.go:85:27: undeclared name: `FHTTPClientIP` (typecheck) + fields = append(fields, FHTTPClientIP(clientIP)) + ^ +log/with.go:89:27: undeclared name: `FTraceID` (typecheck) + fields = append(fields, FTraceID(spanCtx.TraceID().String())) + ^ +------ +2021-11-19 09:45:42 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 09:45:42 [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 09:45:42 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:42 [INFO] --------------------------- +2021-11-19 09:45:42 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 09:45:44 [INFO] - File:[metrics.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:44 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 09:45: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 09:45: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: go +2021-11-19 09:45:44 [INFO] --------------------------- +2021-11-19 09:45:44 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 09:45:47 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:47 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:47 [ERROR] Error code: 1. Command output: +------ +metrics/metrics_http.go:8:9: undeclared name: `NewRequestSizeSummaryVec` (typecheck) + return NewRequestSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:12:9: undeclared name: `NewResponseSizeSummaryVec` (typecheck) + return NewResponseSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:16:9: undeclared name: `NewRequestsCounterVec` (typecheck) + return NewRequestsCounterVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:20:9: undeclared name: `NewRequestDurationHistogram` (typecheck) + return NewRequestDurationHistogram(namespace, "http") + ^ +------ +2021-11-19 09:45:47 [DEBUG] Error code: 1. Command output: +------ +metrics/metrics_http.go:8:9: undeclared name: `NewRequestSizeSummaryVec` (typecheck) + return NewRequestSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:12:9: undeclared name: `NewResponseSizeSummaryVec` (typecheck) + return NewResponseSizeSummaryVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:16:9: undeclared name: `NewRequestsCounterVec` (typecheck) + return NewRequestsCounterVec(namespace, "http", []string{"method", "code"}) + ^ +metrics/metrics_http.go:20:9: undeclared name: `NewRequestDurationHistogram` (typecheck) + return NewRequestDurationHistogram(namespace, "http") + ^ +------ +2021-11-19 09:45:47 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 09:45:47 [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 09:45:47 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:47 [INFO] --------------------------- +2021-11-19 09:45:47 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 09:45:49 [INFO] - File:[decode.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:49 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 09:45: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 09:45: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: go +2021-11-19 09:45:49 [INFO] --------------------------- +2021-11-19 09:45:49 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 09:45:51 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:51 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 09:45:51 [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 09:45:51 [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: go +2021-11-19 09:45:51 [INFO] --------------------------- +2021-11-19 09:45:51 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 09:45:53 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:45:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:45:53 [ERROR] Error code: 1. Command output: +------ +net/http/cookie/cookie.go:26:16: undeclared name: `TimeProvider` (typecheck) + TimeProvider TimeProvider + ^ +net/http/cookie/cookie.go:28:18: undeclared name: `DomainProvider` (typecheck) + DomainProvider DomainProvider + ^ +net/http/cookie/cookie.go:76:25: undeclared name: `TimeProvider` (typecheck) +func WithTimeProvider(v TimeProvider) Option { + ^ +net/http/cookie/cookie.go:83:27: undeclared name: `DomainProvider` (typecheck) +func WithDomainProvider(v DomainProvider) Option { + ^ +net/http/cookie/cookie.go:104:25: undeclared name: `NewDomainProvider` (typecheck) + inst.DomainProvider = NewDomainProvider() + ^ +net/http/cookie/cookie.go:107:23: undeclared name: `NewTimeProvider` (typecheck) + inst.TimeProvider = NewTimeProvider() + ^ +------ +2021-11-19 09:45:53 [DEBUG] Error code: 1. Command output: +------ +net/http/cookie/cookie.go:26:16: undeclared name: `TimeProvider` (typecheck) + TimeProvider TimeProvider + ^ +net/http/cookie/cookie.go:28:18: undeclared name: `DomainProvider` (typecheck) + DomainProvider DomainProvider + ^ +net/http/cookie/cookie.go:76:25: undeclared name: `TimeProvider` (typecheck) +func WithTimeProvider(v TimeProvider) Option { + ^ +net/http/cookie/cookie.go:83:27: undeclared name: `DomainProvider` (typecheck) +func WithDomainProvider(v DomainProvider) Option { + ^ +net/http/cookie/cookie.go:104:25: undeclared name: `NewDomainProvider` (typecheck) + inst.DomainProvider = NewDomainProvider() + ^ +net/http/cookie/cookie.go:107:23: undeclared name: `NewTimeProvider` (typecheck) + inst.TimeProvider = NewTimeProvider() + ^ +------ +2021-11-19 09:45:53 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 09:45:53 [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 09:45:53 [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: go +2021-11-19 09:45:53 [INFO] --------------------------- +2021-11-19 09:45:53 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 09:45:56 [INFO] - File:[domainprovider.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 09:45: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 09:45: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: go +2021-11-19 09:45:56 [INFO] --------------------------- +2021-11-19 09:45:56 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 09:45:57 [INFO] - File:[timeprovider.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:57 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 09:45:57 [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 09:45:57 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:57 [INFO] --------------------------- +2021-11-19 09:45:57 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 09:45:59 [INFO] - File:[header.go] was linted with [golangci-lint] successfully +2021-11-19 09:45:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:45:59 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 09:45:59 [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 09:45:59 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:45:59 [INFO] --------------------------- +2021-11-19 09:45:59 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 09:46:00 [INFO] - File:[headervalues.go] was linted with [golangci-lint] successfully +2021-11-19 09:46:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:46:00 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 09:46: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 09:46:00 [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: go +2021-11-19 09:46:00 [INFO] --------------------------- +2021-11-19 09:46:00 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 09:46:04 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:04 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:04 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/basicauth.go:38:79: undeclared name: `Middleware` (typecheck) +func BasicAuth(username string, passwordHash []byte, opts ...BasicAuthOption) Middleware { + ^ +net/http/middleware/basicauth.go:49:88: undeclared name: `Middleware` (typecheck) +func BasicAuthWithOptions(username string, passwordHash []byte, opts BasicAuthOptions) Middleware { + ^ +------ +2021-11-19 09:46:04 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/basicauth.go:38:79: undeclared name: `Middleware` (typecheck) +func BasicAuth(username string, passwordHash []byte, opts ...BasicAuthOption) Middleware { + ^ +net/http/middleware/basicauth.go:49:88: undeclared name: `Middleware` (typecheck) +func BasicAuthWithOptions(username string, passwordHash []byte, opts BasicAuthOptions) Middleware { + ^ +------ +2021-11-19 09:46:04 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 09:46:04 [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 09:46:04 [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: go +2021-11-19 09:46:04 [INFO] --------------------------- +2021-11-19 09:46:04 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 09:46:08 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:08 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:08 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/cookietokenprovider.go:19:80: undeclared name: `TokenProvider` (typecheck) +func CookieTokenProvider(cookieName string, opts ...CookieTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 09:46:08 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/cookietokenprovider.go:19:80: undeclared name: `TokenProvider` (typecheck) +func CookieTokenProvider(cookieName string, opts ...CookieTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 09:46:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 09:46:08 [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 09:46:08 [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: go +2021-11-19 09:46:08 [INFO] --------------------------- +2021-11-19 09:46:08 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 09:46:12 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:12 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/cors.go:77:31: undeclared name: `Middleware` (typecheck) +func CORS(opts ...CORSOption) Middleware { + ^ +net/http/middleware/cors.go:88:40: undeclared name: `Middleware` (typecheck) +func CORSWithOptions(opts CORSOptions) Middleware { + ^ +------ +2021-11-19 09:46:12 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/cors.go:77:31: undeclared name: `Middleware` (typecheck) +func CORS(opts ...CORSOption) Middleware { + ^ +net/http/middleware/cors.go:88:40: undeclared name: `Middleware` (typecheck) +func CORSWithOptions(opts CORSOptions) Middleware { + ^ +------ +2021-11-19 09:46:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 09:46: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 09:46: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: go +2021-11-19 09:46:12 [INFO] --------------------------- +2021-11-19 09:46:12 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 09:46:14 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:14 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:14 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/headertokenprovider.go:42:61: undeclared name: `TokenProvider` (typecheck) +func HeaderTokenProvider(opts ...HeaderTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 09:46:14 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/headertokenprovider.go:42:61: undeclared name: `TokenProvider` (typecheck) +func HeaderTokenProvider(opts ...HeaderTokenProviderOption) TokenProvider { + ^ +------ +2021-11-19 09:46:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 09:46:14 [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 09:46:14 [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: go +2021-11-19 09:46:14 [INFO] --------------------------- +2021-11-19 09:46:14 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 09:46:17 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:17 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:17 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/jwt.go:18:23: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/jwt.go:72:29: undeclared name: `TokenProvider` (typecheck) +func JWTWithTokenProvider(v TokenProvider) JWTOption { + ^ +net/http/middleware/jwt.go:113:67: undeclared name: `Middleware` (typecheck) +func JWT(jwt *jwt.JWT, contextKey interface{}, opts ...JWTOption) Middleware { + ^ +net/http/middleware/jwt.go:124:76: undeclared name: `Middleware` (typecheck) +func JWTWithOptions(jwt *jwt.JWT, contextKey interface{}, opts JWTOptions) Middleware { + ^ +net/http/middleware/jwt.go:63:24: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 09:46:17 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/jwt.go:18:23: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/jwt.go:72:29: undeclared name: `TokenProvider` (typecheck) +func JWTWithTokenProvider(v TokenProvider) JWTOption { + ^ +net/http/middleware/jwt.go:113:67: undeclared name: `Middleware` (typecheck) +func JWT(jwt *jwt.JWT, contextKey interface{}, opts ...JWTOption) Middleware { + ^ +net/http/middleware/jwt.go:124:76: undeclared name: `Middleware` (typecheck) +func JWTWithOptions(jwt *jwt.JWT, contextKey interface{}, opts JWTOptions) Middleware { + ^ +net/http/middleware/jwt.go:63:24: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 09:46:17 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 09:46:17 [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 09:46:17 [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: go +2021-11-19 09:46:17 [INFO] --------------------------- +2021-11-19 09:46:17 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 09:46:19 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:19 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:19 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/logger.go:27:35: undeclared name: `Middleware` (typecheck) +func Logger(opts ...LoggerOption) Middleware { + ^ +net/http/middleware/logger.go:45:44: undeclared name: `Middleware` (typecheck) +func LoggerWithOptions(opts LoggerOptions) Middleware { + ^ +net/http/middleware/logger.go:51:10: undeclared name: `WrapResponseWriter` (typecheck) + wr := WrapResponseWriter(w) + ^ +------ +2021-11-19 09:46:19 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/logger.go:27:35: undeclared name: `Middleware` (typecheck) +func Logger(opts ...LoggerOption) Middleware { + ^ +net/http/middleware/logger.go:45:44: undeclared name: `Middleware` (typecheck) +func LoggerWithOptions(opts LoggerOptions) Middleware { + ^ +net/http/middleware/logger.go:51:10: undeclared name: `WrapResponseWriter` (typecheck) + wr := WrapResponseWriter(w) + ^ +------ +2021-11-19 09:46:19 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 09:46:19 [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 09:46:19 [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: go +2021-11-19 09:46:19 [INFO] --------------------------- +2021-11-19 09:46:19 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 09:46:21 [INFO] - File:[middleware.go] was linted with [golangci-lint] successfully +2021-11-19 09:46:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:46:21 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 09:46:21 [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 09:46:21 [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: go +2021-11-19 09:46:21 [INFO] --------------------------- +2021-11-19 09:46:21 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 09:46:23 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:23 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:23 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/poweredbyheader.go:28:53: undeclared name: `Middleware` (typecheck) +func PoweredByHeader(opts ...PoweredByHeaderOption) Middleware { + ^ +net/http/middleware/poweredbyheader.go:53:62: undeclared name: `Middleware` (typecheck) +func PoweredByHeaderWithOptions(opts PoweredByHeaderOptions) Middleware { + ^ +------ +2021-11-19 09:46:24 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/poweredbyheader.go:28:53: undeclared name: `Middleware` (typecheck) +func PoweredByHeader(opts ...PoweredByHeaderOption) Middleware { + ^ +net/http/middleware/poweredbyheader.go:53:62: undeclared name: `Middleware` (typecheck) +func PoweredByHeaderWithOptions(opts PoweredByHeaderOptions) Middleware { + ^ +------ +2021-11-19 09:46:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 09:46:24 [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 09:46:24 [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: go +2021-11-19 09:46:24 [INFO] --------------------------- +2021-11-19 09:46:24 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 09:46:26 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:26 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:26 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/recover.go:36:37: undeclared name: `Middleware` (typecheck) +func Recover(opts ...RecoverOption) Middleware { + ^ +net/http/middleware/recover.go:47:46: undeclared name: `Middleware` (typecheck) +func RecoverWithOptions(opts RecoverOptions) Middleware { + ^ +------ +2021-11-19 09:46:26 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/recover.go:36:37: undeclared name: `Middleware` (typecheck) +func Recover(opts ...RecoverOption) Middleware { + ^ +net/http/middleware/recover.go:47:46: undeclared name: `Middleware` (typecheck) +func RecoverWithOptions(opts RecoverOptions) Middleware { + ^ +------ +2021-11-19 09:46:26 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 09:46:26 [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 09:46:26 [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: go +2021-11-19 09:46:26 [INFO] --------------------------- +2021-11-19 09:46:26 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 09:46:28 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:28 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:28 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/requestid.go:58:41: undeclared name: `Middleware` (typecheck) +func RequestID(opts ...RequestIDOption) Middleware { + ^ +net/http/middleware/requestid.go:69:50: undeclared name: `Middleware` (typecheck) +func RequestIDWithOptions(opts RequestIDOptions) Middleware { + ^ +------ +2021-11-19 09:46:28 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/requestid.go:58:41: undeclared name: `Middleware` (typecheck) +func RequestID(opts ...RequestIDOption) Middleware { + ^ +net/http/middleware/requestid.go:69:50: undeclared name: `Middleware` (typecheck) +func RequestIDWithOptions(opts RequestIDOptions) Middleware { + ^ +------ +2021-11-19 09:46:28 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 09:46:28 [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 09:46:28 [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: go +2021-11-19 09:46:28 [INFO] --------------------------- +2021-11-19 09:46:28 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 09:46:30 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:30 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:30 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/requesturiblacklistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIBlacklistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 09:46:30 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/requesturiblacklistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIBlacklistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 09:46:30 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 09:46:30 [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 09:46:30 [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: go +2021-11-19 09:46:30 [INFO] --------------------------- +2021-11-19 09:46:30 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 09:46:33 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:33 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:33 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/requesturiwhitelistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIWhitelistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 09:46:33 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/requesturiwhitelistskipper.go:8:49: undeclared name: `Skipper` (typecheck) +func RequestURIWhitelistSkipper(uris ...string) Skipper { + ^ +------ +2021-11-19 09:46:33 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 09:46:33 [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 09:46:33 [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: go +2021-11-19 09:46:33 [INFO] --------------------------- +2021-11-19 09:46:33 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 09:46:35 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:35 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:35 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/responsetime.go:51:47: undeclared name: `Middleware` (typecheck) +func ResponseTime(opts ...ResponseTimeOption) Middleware { + ^ +net/http/middleware/responsetime.go:62:56: undeclared name: `Middleware` (typecheck) +func ResponseTimeWithOptions(opts ResponseTimeOptions) Middleware { + ^ +net/http/middleware/responsetime.go:66:10: undeclared name: `WrapResponseWriter` (typecheck) + rw := WrapResponseWriter(w) + ^ +------ +2021-11-19 09:46:35 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/responsetime.go:51:47: undeclared name: `Middleware` (typecheck) +func ResponseTime(opts ...ResponseTimeOption) Middleware { + ^ +net/http/middleware/responsetime.go:62:56: undeclared name: `Middleware` (typecheck) +func ResponseTimeWithOptions(opts ResponseTimeOptions) Middleware { + ^ +net/http/middleware/responsetime.go:66:10: undeclared name: `WrapResponseWriter` (typecheck) + rw := WrapResponseWriter(w) + ^ +------ +2021-11-19 09:46:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 09:46: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 09:46: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: go +2021-11-19 09:46:36 [INFO] --------------------------- +2021-11-19 09:46:36 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 09:46:38 [INFO] - File:[responsewriter.go] was linted with [golangci-lint] successfully +2021-11-19 09:46:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:46:38 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 09:46:38 [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 09:46:38 [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: go +2021-11-19 09:46:38 [INFO] --------------------------- +2021-11-19 09:46:38 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 09:46:40 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:41 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/serverheader.go:27:47: undeclared name: `Middleware` (typecheck) +func ServerHeader(opts ...ServerHeaderOption) Middleware { + ^ +net/http/middleware/serverheader.go:52:56: undeclared name: `Middleware` (typecheck) +func ServerHeaderWithOptions(opts ServerHeaderOptions) Middleware { + ^ +------ +2021-11-19 09:46:41 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/serverheader.go:27:47: undeclared name: `Middleware` (typecheck) +func ServerHeader(opts ...ServerHeaderOption) Middleware { + ^ +net/http/middleware/serverheader.go:52:56: undeclared name: `Middleware` (typecheck) +func ServerHeaderWithOptions(opts ServerHeaderOptions) Middleware { + ^ +------ +2021-11-19 09:46:41 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 09:46:41 [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 09:46:41 [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: go +2021-11-19 09:46:41 [INFO] --------------------------- +2021-11-19 09:46:41 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 09:46:44 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:44 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:44 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/sessionid.go:101:41: undeclared name: `Middleware` (typecheck) +func SessionID(opts ...SessionIDOption) Middleware { + ^ +net/http/middleware/sessionid.go:112:50: undeclared name: `Middleware` (typecheck) +func SessionIDWithOptions(opts SessionIDOptions) Middleware { + ^ +------ +2021-11-19 09:46:44 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/sessionid.go:101:41: undeclared name: `Middleware` (typecheck) +func SessionID(opts ...SessionIDOption) Middleware { + ^ +net/http/middleware/sessionid.go:112:50: undeclared name: `Middleware` (typecheck) +func SessionIDWithOptions(opts SessionIDOptions) Middleware { + ^ +------ +2021-11-19 09:46:44 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 09:46:44 [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 09:46:44 [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: go +2021-11-19 09:46:44 [INFO] --------------------------- +2021-11-19 09:46:44 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 09:46:46 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:46 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:46 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/skip.go:9:14: undeclared name: `Middleware` (typecheck) +func Skip(mw Middleware, skippers ...Skipper) Middleware { + ^ +------ +2021-11-19 09:46:46 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/skip.go:9:14: undeclared name: `Middleware` (typecheck) +func Skip(mw Middleware, skippers ...Skipper) Middleware { + ^ +------ +2021-11-19 09:46:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 09:46: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 09:46: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: go +2021-11-19 09:46:46 [INFO] --------------------------- +2021-11-19 09:46:46 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 09:46:49 [INFO] - File:[skipper.go] was linted with [golangci-lint] successfully +2021-11-19 09:46:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:46:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 09:46:49 [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 09:46:49 [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: go +2021-11-19 09:46:49 [INFO] --------------------------- +2021-11-19 09:46:49 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 09:46:51 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:51 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:51 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/telemetry.go:26:41: undeclared name: `Middleware` (typecheck) +func Telemetry(opts ...TelemetryOption) Middleware { + ^ +net/http/middleware/telemetry.go:50:50: undeclared name: `Middleware` (typecheck) +func TelemetryWithOptions(opts TelemetryOptions) Middleware { + ^ +------ +2021-11-19 09:46:51 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/telemetry.go:26:41: undeclared name: `Middleware` (typecheck) +func Telemetry(opts ...TelemetryOption) Middleware { + ^ +net/http/middleware/telemetry.go:50:50: undeclared name: `Middleware` (typecheck) +func TelemetryWithOptions(opts TelemetryOptions) Middleware { + ^ +------ +2021-11-19 09:46:51 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 09:46: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 09:46: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: go +2021-11-19 09:46:51 [INFO] --------------------------- +2021-11-19 09:46:51 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 09:46:53 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:53 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:53 [ERROR] Error code: 1. Command output: +------ +net/http/middleware/tokenauth.go:16:17: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/tokenauth.go:29:35: undeclared name: `TokenProvider` (typecheck) +func TokenAuthWithTokenProvider(v TokenProvider) TokenAuthOption { + ^ +net/http/middleware/tokenauth.go:36:55: undeclared name: `Middleware` (typecheck) +func TokenAuth(token string, opts ...TokenAuthOption) Middleware { + ^ +net/http/middleware/tokenauth.go:47:64: undeclared name: `Middleware` (typecheck) +func TokenAuthWithOptions(token string, opts TokenAuthOptions) Middleware { + ^ +net/http/middleware/tokenauth.go:24:18: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 09:46:53 [DEBUG] Error code: 1. Command output: +------ +net/http/middleware/tokenauth.go:16:17: undeclared name: `TokenProvider` (typecheck) + TokenProvider TokenProvider + ^ +net/http/middleware/tokenauth.go:29:35: undeclared name: `TokenProvider` (typecheck) +func TokenAuthWithTokenProvider(v TokenProvider) TokenAuthOption { + ^ +net/http/middleware/tokenauth.go:36:55: undeclared name: `Middleware` (typecheck) +func TokenAuth(token string, opts ...TokenAuthOption) Middleware { + ^ +net/http/middleware/tokenauth.go:47:64: undeclared name: `Middleware` (typecheck) +func TokenAuthWithOptions(token string, opts TokenAuthOptions) Middleware { + ^ +net/http/middleware/tokenauth.go:24:18: undeclared name: `HeaderTokenProvider` (typecheck) + TokenProvider: HeaderTokenProvider(), + ^ +------ +2021-11-19 09:46:53 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 09:46:53 [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 09:46:53 [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: go +2021-11-19 09:46:53 [INFO] --------------------------- +2021-11-19 09:46:53 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 09:46:55 [INFO] - File:[tokenprovider.go] was linted with [golangci-lint] successfully +2021-11-19 09:46:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:46:55 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 09:46:55 [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 09:46:55 [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: go +2021-11-19 09:46:55 [INFO] --------------------------- +2021-11-19 09:46:55 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 09:46:57 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:57 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:57 [ERROR] Error code: 1. Command output: +------ +net/stream/jetstream/publisher.go:9:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 09:46:57 [DEBUG] Error code: 1. Command output: +------ +net/stream/jetstream/publisher.go:9:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 09:46:57 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 09:46:57 [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 09:46:57 [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: go +2021-11-19 09:46:57 [INFO] --------------------------- +2021-11-19 09:46:57 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 09:46:59 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:46:59 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:46:59 [ERROR] Error code: 1. Command output: +------ +net/stream/jetstream/stream.go:26:25: undeclared name: `Publisher` (typecheck) + PublisherOption func(*Publisher) + ^ +net/stream/jetstream/stream.go:27:25: undeclared name: `Subscriber` (typecheck) + SubscriberOption func(*Subscriber) + ^ +net/stream/jetstream/stream.go:56:35: undeclared name: `MarshalFn` (typecheck) +func PublisherWithMarshal(marshal MarshalFn) PublisherOption { + ^ +net/stream/jetstream/stream.go:80:40: undeclared name: `UnmarshalFn` (typecheck) +func SubscriberWithUnmarshal(unmarshal UnmarshalFn) SubscriberOption { + ^ +net/stream/jetstream/stream.go:167:70: undeclared name: `Publisher` (typecheck) +func (s *Stream) Publisher(subject string, opts ...PublisherOption) *Publisher { + ^ +net/stream/jetstream/stream.go:182:72: undeclared name: `Subscriber` (typecheck) +func (s *Stream) Subscriber(subject string, opts ...SubscriberOption) *Subscriber { + ^ +net/stream/jetstream/stream.go:51:17: undeclared name: `Publisher` (typecheck) + return func(o *Publisher) { + ^ +net/stream/jetstream/stream.go:69:17: undeclared name: `Subscriber` (typecheck) + return func(o *Subscriber) { + ^ +------ +2021-11-19 09:46:59 [DEBUG] Error code: 1. Command output: +------ +net/stream/jetstream/stream.go:26:25: undeclared name: `Publisher` (typecheck) + PublisherOption func(*Publisher) + ^ +net/stream/jetstream/stream.go:27:25: undeclared name: `Subscriber` (typecheck) + SubscriberOption func(*Subscriber) + ^ +net/stream/jetstream/stream.go:56:35: undeclared name: `MarshalFn` (typecheck) +func PublisherWithMarshal(marshal MarshalFn) PublisherOption { + ^ +net/stream/jetstream/stream.go:80:40: undeclared name: `UnmarshalFn` (typecheck) +func SubscriberWithUnmarshal(unmarshal UnmarshalFn) SubscriberOption { + ^ +net/stream/jetstream/stream.go:167:70: undeclared name: `Publisher` (typecheck) +func (s *Stream) Publisher(subject string, opts ...PublisherOption) *Publisher { + ^ +net/stream/jetstream/stream.go:182:72: undeclared name: `Subscriber` (typecheck) +func (s *Stream) Subscriber(subject string, opts ...SubscriberOption) *Subscriber { + ^ +net/stream/jetstream/stream.go:51:17: undeclared name: `Publisher` (typecheck) + return func(o *Publisher) { + ^ +net/stream/jetstream/stream.go:69:17: undeclared name: `Subscriber` (typecheck) + return func(o *Subscriber) { + ^ +------ +2021-11-19 09:46:59 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 09:46:59 [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 09:46:59 [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: go +2021-11-19 09:46:59 [INFO] --------------------------- +2021-11-19 09:46:59 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 09:47:02 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:02 [ERROR] Error code: 1. Command output: +------ +net/stream/jetstream/subscriber.go:14:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 09:47:02 [DEBUG] Error code: 1. Command output: +------ +net/stream/jetstream/subscriber.go:14:14: undeclared name: `Stream` (typecheck) + stream *Stream + ^ +------ +2021-11-19 09:47:02 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 09:47: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 09:47:02 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:02 [INFO] --------------------------- +2021-11-19 09:47:02 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 09:47:04 [INFO] - File:[middleware.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:04 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 09:47: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 09:47:04 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:04 [INFO] --------------------------- +2021-11-19 09:47:04 [INFO] File:[/tmp/lint/option.go] +2021-11-19 09:47:07 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:07 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:07 [ERROR] Error code: 1. Command output: +------ +option.go:14:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +option.go:18:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:25:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:55:20: undeclared name: `NewDefaultServiceHTTPZap` (typecheck) + inst.AddService(NewDefaultServiceHTTPZap()) + ^ +option.go:64:20: undeclared name: `NewDefaultServiceHTTPViper` (typecheck) + inst.AddService(NewDefaultServiceHTTPViper()) + ^ +option.go:73:20: undeclared name: `NewDefaultServiceHTTPPrometheus` (typecheck) + inst.AddService(NewDefaultServiceHTTPPrometheus()) + ^ +------ +2021-11-19 09:47:07 [DEBUG] Error code: 1. Command output: +------ +option.go:14:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +option.go:18:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:25:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +option.go:55:20: undeclared name: `NewDefaultServiceHTTPZap` (typecheck) + inst.AddService(NewDefaultServiceHTTPZap()) + ^ +option.go:64:20: undeclared name: `NewDefaultServiceHTTPViper` (typecheck) + inst.AddService(NewDefaultServiceHTTPViper()) + ^ +option.go:73:20: undeclared name: `NewDefaultServiceHTTPPrometheus` (typecheck) + inst.AddService(NewDefaultServiceHTTPPrometheus()) + ^ +------ +2021-11-19 09:47:07 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 09:47:07 [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 09:47:07 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:07 [INFO] --------------------------- +2021-11-19 09:47:07 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 09:47:08 [INFO] - File:[error.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:08 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 09:47: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 09:47: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: go +2021-11-19 09:47:08 [INFO] --------------------------- +2021-11-19 09:47:08 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 09:47:12 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:12 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:12 [ERROR] Error code: 1. Command output: +------ +persistence/mongo/collection.go:150:68: undeclared name: `Entity` (typecheck) +func (c *Collection) Upsert(ctx context.Context, id string, entity Entity) error { + ^ +persistence/mongo/collection.go:218:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:240:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:255:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +------ +2021-11-19 09:47:12 [DEBUG] Error code: 1. Command output: +------ +persistence/mongo/collection.go:150:68: undeclared name: `Entity` (typecheck) +func (c *Collection) Upsert(ctx context.Context, id string, entity Entity) error { + ^ +persistence/mongo/collection.go:218:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:240:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +persistence/mongo/collection.go:255:8: undeclared name: `CloseCursor` (typecheck) + defer CloseCursor(ctx, cursor, &err) + ^ +------ +2021-11-19 09:47:12 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 09:47:12 [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 09:47:12 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:12 [INFO] --------------------------- +2021-11-19 09:47:12 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 09:47:14 [INFO] - File:[entity.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 09:47: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 09:47: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: go +2021-11-19 09:47:14 [INFO] --------------------------- +2021-11-19 09:47:14 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 09:47:16 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:16 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:16 [ERROR] Error code: 1. Command output: +------ +persistence/mongo/persistor.go:122:52: undeclared name: `CollectionOption` (typecheck) +func (p Persistor) Collection(name string, opts ...CollectionOption) (*Collection, error) { + ^ +persistence/mongo/persistor.go:123:9: undeclared name: `NewCollection` (typecheck) + return NewCollection(p.db, name, opts...) + ^ +------ +2021-11-19 09:47:17 [DEBUG] Error code: 1. Command output: +------ +persistence/mongo/persistor.go:122:52: undeclared name: `CollectionOption` (typecheck) +func (p Persistor) Collection(name string, opts ...CollectionOption) (*Collection, error) { + ^ +persistence/mongo/persistor.go:123:9: undeclared name: `NewCollection` (typecheck) + return NewCollection(p.db, name, opts...) + ^ +------ +2021-11-19 09:47:17 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 09:47:17 [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 09:47:17 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:17 [INFO] --------------------------- +2021-11-19 09:47:17 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 09:47:19 [INFO] - File:[utils.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:19 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 09:47:19 [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 09:47:19 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:19 [INFO] --------------------------- +2021-11-19 09:47:19 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 09:47:21 [INFO] - File:[persistor.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:21 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 09:47:22 [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 09:47:22 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:22 [INFO] --------------------------- +2021-11-19 09:47:22 [INFO] File:[/tmp/lint/server.go] +2021-11-19 09:47:25 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:25 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:25 [ERROR] Error code: 1. Command output: +------ +server.go:23:20: undeclared name: `Service` (typecheck) + services []Service + ^ +server.go:31:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +server.go:62:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +server.go:69:37: undeclared name: `Service` (typecheck) +func (s *Server) AddService(service Service) { + ^ +server.go:88:7: undeclared name: `Closer` (typecheck) + case Closer, + ^ +server.go:89:3: undeclared name: `ErrorCloser` (typecheck) + ErrorCloser, + ^ +server.go:90:3: undeclared name: `CloserWithContext` (typecheck) + CloserWithContext, + ^ +server.go:91:3: undeclared name: `ErrorCloserWithContext` (typecheck) + ErrorCloserWithContext, + ^ +server.go:92:3: undeclared name: `Shutdowner` (typecheck) + Shutdowner, + ^ +server.go:93:3: undeclared name: `ErrorShutdowner` (typecheck) + ErrorShutdowner, + ^ +server.go:94:3: undeclared name: `ShutdownerWithContext` (typecheck) + ShutdownerWithContext, + ^ +server.go:95:3: undeclared name: `ErrorShutdownerWithContext` (typecheck) + ErrorShutdownerWithContext, + ^ +server.go:96:3: undeclared name: `Unsubscriber` (typecheck) + Unsubscriber, + ^ +server.go:97:3: undeclared name: `ErrorUnsubscriber` (typecheck) + ErrorUnsubscriber, + ^ +server.go:98:3: undeclared name: `UnsubscriberWithContext` (typecheck) + UnsubscriberWithContext, + ^ +server.go:99:3: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + ErrorUnsubscriberWithContext: + ^ +server.go:146:9: undeclared name: `Closer` (typecheck) + case Closer: + ^ +server.go:148:9: undeclared name: `ErrorCloser` (typecheck) + case ErrorCloser: + ^ +server.go:153:9: undeclared name: `CloserWithContext` (typecheck) + case CloserWithContext: + ^ +server.go:155:9: undeclared name: `ErrorCloserWithContext` (typecheck) + case ErrorCloserWithContext: + ^ +server.go:160:9: undeclared name: `Shutdowner` (typecheck) + case Shutdowner: + ^ +server.go:162:9: undeclared name: `ErrorShutdowner` (typecheck) + case ErrorShutdowner: + ^ +server.go:167:9: undeclared name: `ShutdownerWithContext` (typecheck) + case ShutdownerWithContext: + ^ +server.go:169:9: undeclared name: `ErrorShutdownerWithContext` (typecheck) + case ErrorShutdownerWithContext: + ^ +server.go:174:9: undeclared name: `Unsubscriber` (typecheck) + case Unsubscriber: + ^ +server.go:176:9: undeclared name: `ErrorUnsubscriber` (typecheck) + case ErrorUnsubscriber: + ^ +server.go:181:9: undeclared name: `UnsubscriberWithContext` (typecheck) + case UnsubscriberWithContext: + ^ +server.go:183:9: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + case ErrorUnsubscriberWithContext: + ^ +------ +2021-11-19 09:47:25 [DEBUG] Error code: 1. Command output: +------ +server.go:23:20: undeclared name: `Service` (typecheck) + services []Service + ^ +server.go:31:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +server.go:62:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +server.go:69:37: undeclared name: `Service` (typecheck) +func (s *Server) AddService(service Service) { + ^ +server.go:88:7: undeclared name: `Closer` (typecheck) + case Closer, + ^ +server.go:89:3: undeclared name: `ErrorCloser` (typecheck) + ErrorCloser, + ^ +server.go:90:3: undeclared name: `CloserWithContext` (typecheck) + CloserWithContext, + ^ +server.go:91:3: undeclared name: `ErrorCloserWithContext` (typecheck) + ErrorCloserWithContext, + ^ +server.go:92:3: undeclared name: `Shutdowner` (typecheck) + Shutdowner, + ^ +server.go:93:3: undeclared name: `ErrorShutdowner` (typecheck) + ErrorShutdowner, + ^ +server.go:94:3: undeclared name: `ShutdownerWithContext` (typecheck) + ShutdownerWithContext, + ^ +server.go:95:3: undeclared name: `ErrorShutdownerWithContext` (typecheck) + ErrorShutdownerWithContext, + ^ +server.go:96:3: undeclared name: `Unsubscriber` (typecheck) + Unsubscriber, + ^ +server.go:97:3: undeclared name: `ErrorUnsubscriber` (typecheck) + ErrorUnsubscriber, + ^ +server.go:98:3: undeclared name: `UnsubscriberWithContext` (typecheck) + UnsubscriberWithContext, + ^ +server.go:99:3: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + ErrorUnsubscriberWithContext: + ^ +server.go:146:9: undeclared name: `Closer` (typecheck) + case Closer: + ^ +server.go:148:9: undeclared name: `ErrorCloser` (typecheck) + case ErrorCloser: + ^ +server.go:153:9: undeclared name: `CloserWithContext` (typecheck) + case CloserWithContext: + ^ +server.go:155:9: undeclared name: `ErrorCloserWithContext` (typecheck) + case ErrorCloserWithContext: + ^ +server.go:160:9: undeclared name: `Shutdowner` (typecheck) + case Shutdowner: + ^ +server.go:162:9: undeclared name: `ErrorShutdowner` (typecheck) + case ErrorShutdowner: + ^ +server.go:167:9: undeclared name: `ShutdownerWithContext` (typecheck) + case ShutdownerWithContext: + ^ +server.go:169:9: undeclared name: `ErrorShutdownerWithContext` (typecheck) + case ErrorShutdownerWithContext: + ^ +server.go:174:9: undeclared name: `Unsubscriber` (typecheck) + case Unsubscriber: + ^ +server.go:176:9: undeclared name: `ErrorUnsubscriber` (typecheck) + case ErrorUnsubscriber: + ^ +server.go:181:9: undeclared name: `UnsubscriberWithContext` (typecheck) + case UnsubscriberWithContext: + ^ +server.go:183:9: undeclared name: `ErrorUnsubscriberWithContext` (typecheck) + case ErrorUnsubscriberWithContext: + ^ +------ +2021-11-19 09:47:25 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 09:47: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 09:47:25 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:25 [INFO] --------------------------- +2021-11-19 09:47:25 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 09:47:31 [INFO] - File:[server_test.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:31 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 09:47:32 [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 09:47:32 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:32 [INFO] --------------------------- +2021-11-19 09:47:32 [INFO] File:[/tmp/lint/service.go] +2021-11-19 09:47:33 [INFO] - File:[service.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:33 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 09:47:33 [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 09:47:33 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:33 [INFO] --------------------------- +2021-11-19 09:47:33 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 09:47:36 [INFO] - File:[servicehttp.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:36 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 09:47:36 [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 09:47:36 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:36 [INFO] --------------------------- +2021-11-19 09:47:36 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 09:47:38 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:38 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:38 [ERROR] Error code: 1. Command output: +------ +servicehttpprometheus.go:19:72: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPPrometheus(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpprometheus.go:30:41: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPPrometheus() *ServiceHTTP { + ^ +servicehttpprometheus.go:27:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 09:47:38 [DEBUG] Error code: 1. Command output: +------ +servicehttpprometheus.go:19:72: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPPrometheus(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpprometheus.go:30:41: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPPrometheus() *ServiceHTTP { + ^ +servicehttpprometheus.go:27:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 09:47:38 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 09:47:38 [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 09:47:38 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:38 [INFO] --------------------------- +2021-11-19 09:47:38 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 09:47:40 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:40 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:40 [ERROR] Error code: 1. Command output: +------ +servicehttpviper.go:20:83: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPViper(l *zap.Logger, c *viper.Viper, name, addr, path string) *ServiceHTTP { + ^ +servicehttpviper.go:50:36: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPViper() *ServiceHTTP { + ^ +servicehttpviper.go:47:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 09:47:40 [DEBUG] Error code: 1. Command output: +------ +servicehttpviper.go:20:83: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPViper(l *zap.Logger, c *viper.Viper, name, addr, path string) *ServiceHTTP { + ^ +servicehttpviper.go:50:36: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPViper() *ServiceHTTP { + ^ +servicehttpviper.go:47:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 09:47:40 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 09:47:40 [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 09:47:40 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:40 [INFO] --------------------------- +2021-11-19 09:47:40 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 09:47:43 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:43 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:43 [ERROR] Error code: 1. Command output: +------ +servicehttpzap.go:20:65: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPZap(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpzap.go:97:34: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPZap() *ServiceHTTP { + ^ +servicehttpzap.go:94:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 09:47:43 [DEBUG] Error code: 1. Command output: +------ +servicehttpzap.go:20:65: undeclared name: `ServiceHTTP` (typecheck) +func NewServiceHTTPZap(l *zap.Logger, name, addr, path string) *ServiceHTTP { + ^ +servicehttpzap.go:97:34: undeclared name: `ServiceHTTP` (typecheck) +func NewDefaultServiceHTTPZap() *ServiceHTTP { + ^ +servicehttpzap.go:94:9: undeclared name: `NewServiceHTTP` (typecheck) + return NewServiceHTTP(l, name, addr, handler) + ^ +------ +2021-11-19 09:47:43 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 09:47: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 09:47:43 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:43 [INFO] --------------------------- +2021-11-19 09:47:43 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 09:47:45 [INFO] - File:[error.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:45 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 09:47:45 [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 09:47:45 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:45 [INFO] --------------------------- +2021-11-19 09:47:45 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 09:47:47 [INFO] - File:[meter.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:47 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 09:47:47 [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 09:47:47 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:47 [INFO] --------------------------- +2021-11-19 09:47:47 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 09:47:49 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:49 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:49 [ERROR] Error code: 1. Command output: +------ +telemetry/span.go:11:9: undeclared name: `tracer` (typecheck) + return tracer.Start(ctx, spanName, opts...) + ^ +------ +2021-11-19 09:47:49 [DEBUG] Error code: 1. Command output: +------ +telemetry/span.go:11:9: undeclared name: `tracer` (typecheck) + return tracer.Start(ctx, spanName, opts...) + ^ +------ +2021-11-19 09:47:49 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 09:47:49 [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 09:47:49 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:49 [INFO] --------------------------- +2021-11-19 09:47:49 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 09:47:52 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:47:52 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:47:52 [ERROR] Error code: 1. Command output: +------ +telemetry/telemetry.go:38:17: undeclared name: `ErrorHandler` (typecheck) + errorHandler *ErrorHandler + ^ +telemetry/telemetry.go:47:18: undeclared name: `ErrorHandler` (typecheck) + errorHandler = &ErrorHandler{} + ^ +------ +2021-11-19 09:47:52 [DEBUG] Error code: 1. Command output: +------ +telemetry/telemetry.go:38:17: undeclared name: `ErrorHandler` (typecheck) + errorHandler *ErrorHandler + ^ +telemetry/telemetry.go:47:18: undeclared name: `ErrorHandler` (typecheck) + errorHandler = &ErrorHandler{} + ^ +------ +2021-11-19 09:47:52 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 09:47:52 [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 09:47:52 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:52 [INFO] --------------------------- +2021-11-19 09:47:52 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 09:47:55 [INFO] - File:[client.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:55 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 09:47: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 09:47:55 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:55 [INFO] --------------------------- +2021-11-19 09:47:55 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 09:47:58 [INFO] - File:[log.go] was linted with [golangci-lint] successfully +2021-11-19 09:47:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:47:58 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 09:47: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 09:47:58 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:47:58 [INFO] --------------------------- +2021-11-19 09:47:58 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 09:48:00 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:48:00 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:48:00 [ERROR] Error code: 1. Command output: +------ +test/option.go:11:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +test/option.go:15:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +test/option.go:22:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +------ +2021-11-19 09:48:00 [DEBUG] Error code: 1. Command output: +------ +test/option.go:11:24: undeclared name: `Server` (typecheck) +type Option func(inst *Server) + ^ +test/option.go:15:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +test/option.go:22:20: undeclared name: `Server` (typecheck) + return func(inst *Server) { + ^ +------ +2021-11-19 09:48:00 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 09:48: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 09:48:00 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:48:00 [INFO] --------------------------- +2021-11-19 09:48:00 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 09:48:02 [DEBUG] Found errors. Error code: 1, File type: GO, Error on missing exec bit: false +2021-11-19 09:48:02 [ERROR] Found errors in [golangci-lint] linter! +2021-11-19 09:48:02 [ERROR] Error code: 1. Command output: +------ +test/server.go:13:15: undeclared name: `Service` (typecheck) + services []Service + ^ +test/server.go:14:24: undeclared name: `Service` (typecheck) + serviceMap map[string]Service + ^ +test/server.go:20:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +test/server.go:50:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +------ +2021-11-19 09:48:02 [DEBUG] Error code: 1. Command output: +------ +test/server.go:13:15: undeclared name: `Service` (typecheck) + services []Service + ^ +test/server.go:14:24: undeclared name: `Service` (typecheck) + serviceMap map[string]Service + ^ +test/server.go:20:24: undeclared name: `Option` (typecheck) +func NewServer(opts ...Option) *Server { + ^ +test/server.go:50:42: undeclared name: `Service` (typecheck) +func (s *Server) AddServices(services ...Service) { + ^ +------ +2021-11-19 09:48:02 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 09:48:02 [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 09:48:02 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:48:02 [INFO] --------------------------- +2021-11-19 09:48:02 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 09:48:04 [INFO] - File:[service.go] was linted with [golangci-lint] successfully +2021-11-19 09:48:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:48:04 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 09:48:04 [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 09:48:04 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:48:04 [INFO] --------------------------- +2021-11-19 09:48:04 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 09:48:07 [INFO] - File:[servicehttp.go] was linted with [golangci-lint] successfully +2021-11-19 09:48:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:48:07 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 09:48: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 09:48:07 [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: go +2021-11-19 09:48:07 [INFO] --------------------------- +2021-11-19 09:48:07 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 09:48:09 [INFO] - File:[basicauth.go] was linted with [golangci-lint] successfully +2021-11-19 09:48:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:48:09 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 09:48:09 [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 09:48:09 [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: go +2021-11-19 09:48:09 [INFO] --------------------------- +2021-11-19 09:48:09 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 09:48:11 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 09:48:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:48:11 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 09:48:11 [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 09:48:11 [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: go +2021-11-19 09:48:11 [INFO] --------------------------- +2021-11-19 09:48:11 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 09:48:13 [INFO] - File:[request.go] was linted with [golangci-lint] successfully +2021-11-19 09:48:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:48:13 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:13 [DEBUG] Running linter for the GROOVY language... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:13 [DEBUG] Running linter for the HTML language... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:13 [DEBUG] Running linter for the JAVA language... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:13 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 09:48:13 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:13 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the JSCPD language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the JSON language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the JSONC language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the JSX language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the LATEX language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the LUA language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:14 [DEBUG] Running linter for the PERL language... +2021-11-19 09:48:14 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:15 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:15 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:15 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:15 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:15 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:15 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:15 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 09:48:15 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the R language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the RAKU language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the RUBY language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the STATES language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the SQL language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the TEKTON language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the TSX language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 09:48:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:16 [DEBUG] Running linter for the XML language... +2021-11-19 09:48:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 09:48:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:17 [DEBUG] Running linter for the YAML language... +2021-11-19 09:48:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 09:48:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:48:17 [INFO] ---------------------------------------------- +2021-11-19 09:48:17 [INFO] ---------------------------------------------- +2021-11-19 09:48:17 [INFO] The script has completed +2021-11-19 09:48:17 [INFO] ---------------------------------------------- +2021-11-19 09:48:17 [INFO] ---------------------------------------------- +2021-11-19 09:48:17 [ERROR] ERRORS FOUND in GO:[48] +2021-11-19 09:48:17 [DEBUG] Calling Multi-Status API for GO with status error +2021-11-19 09:48:17 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 09:50:04 [INFO] - Image Creation Date:[] +2021-11-19 09:50:04 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 09:50:04 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [INFO] The Super-Linter source code can be found at: +2021-11-19 09:50:04 [INFO] - https://github.com/github/super-linter +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] Linter Version Info: +2021-11-19 09:50:04 [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 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [INFO] -------------------------------------------- +2021-11-19 09:50:04 [INFO] Gathering GitHub information... +2021-11-19 09:50:04 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 09:50:04 [INFO] bypassing GitHub Actions variables... +2021-11-19 09:50:04 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 09:50:04 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 09:50:04 [INFO] -------------------------------------------- +2021-11-19 09:50:04 [INFO] Gathering user validation information... +2021-11-19 09:50:04 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 09:50:04 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 09:50:04 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 09:50:04 [DEBUG] Defining variables for GO linter... +2021-11-19 09:50:04 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 09:50:04 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 09:50:04 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 09:50:04 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 09:50:04 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 09:50:04 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Validating [GO] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [R] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 09:50:04 [DEBUG] --- DEBUG INFO --- +2021-11-19 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] Runner:[root] +2021-11-19 09:50:04 [DEBUG] ENV: +2021-11-19 09:50:04 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=afc3cc3e3674 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.Qw0nAkHh3r +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_ALL_CODEBASE=true +VALIDATE_ANSIBLE=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 09:50:04 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 09:50:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:04 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 09:50:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:04 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 09:50:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:04 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 09:50:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 09:50:04 [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 09:50:04 [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 09:50:04 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 09:50:04 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 09:50:04 [DEBUG] Loading rules for ARM... +2021-11-19 09:50:04 [DEBUG] Getting linter rules for ARM... +2021-11-19 09:50:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:04 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 09:50:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:04 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 09:50:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:04 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 09:50:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 09:50:04 [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 09:50:04 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 09:50:04 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 09:50:04 [DEBUG] Loading rules for BASH... +2021-11-19 09:50:04 [DEBUG] Getting linter rules for BASH... +2021-11-19 09:50:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:04 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 09:50:05 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 09:50:05 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 09:50:05 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 09:50: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 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 09:50:05 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for CLOJURE... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 09:50:05 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 09:50:05 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for CPP... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CPP... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 09:50:05 [DEBUG] Loading rules for CSHARP... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 09:50:05 [DEBUG] Loading rules for CSS... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CSS... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 09:50:05 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for DART... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for DART... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 09:50: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 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 09:50:05 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 09:50:05 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 09:50:05 [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 09:50:05 [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 09:50:05 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 09:50:05 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 09:50:05 [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 09:50:05 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 09:50:05 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for ENV... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for ENV... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 09:50:05 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 09:50:05 [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 09:50:05 [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 09:50:05 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 09:50:05 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 09:50:06 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for GHERKIN... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 09:50:06 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for GO... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GO... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 09:50:06 [INFO] ---------------------------------------------- +2021-11-19 09:50:06 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 09:50:06 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 09:50:06 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:50:06 [DEBUG] Loading rules for GROOVY... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 09:50:06 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for HTML... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for HTML... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 09:50:06 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JAVA... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JAVA... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 09:50:06 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:06 [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 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:06 [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 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JSCPD... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 09:50:06 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JSON... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSON... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 09:50:06 [DEBUG] Loading rules for JSONC... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSONC... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 09:50:06 [DEBUG] Loading rules for JSX... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSX... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:07 [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 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:07 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 09:50:07 [DEBUG] Loading rules for KOTLIN... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 09:50:07 [DEBUG] Loading rules for LATEX... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for LATEX... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 09:50:07 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for LUA... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for LUA... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 09:50:07 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 09:50:07 [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 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 09:50:07 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 09:50:07 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for OPENAPI... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 09:50:07 [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 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 09:50:07 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for PERL... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for PERL... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 09:50:08 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 09:50:08 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 09:50:08 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 09:50:08 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 09:50:08 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 09:50:08 [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 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 09:50:08 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 09:50:08 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for R... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for R... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 09:50:09 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for RAKU... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RAKU... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 09:50:09 [DEBUG] Loading rules for RUBY... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUBY... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 09:50:09 [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 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 09:50:09 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for RUST_2015... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 09:50:09 [DEBUG] Loading rules for RUST_2018... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 09:50:09 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 09:50:09 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 09:50:09 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 09:50:09 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 09:50:09 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 09:50:09 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for STATES... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for STATES... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 09:50:09 [DEBUG] Loading rules for SQL... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SQL... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 09:50:10 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 09:50:10 [DEBUG] Loading rules for TEKTON... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 09:50:10 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 09:50:10 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 09:50:10 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 09:50:10 [DEBUG] Loading rules for TSX... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TSX... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for XML... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for XML... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 09:50:10 [DEBUG] Loading rules for YAML... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for YAML... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 09:50:10 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 09:50:10 [DEBUG] ENV:[browser] +2021-11-19 09:50:10 [DEBUG] ENV:[es6] +2021-11-19 09:50:10 [DEBUG] ENV:[jest] +2021-11-19 09:50:11 [DEBUG] ENV:[browser] +2021-11-19 09:50:11 [DEBUG] ENV:[es6] +2021-11-19 09:50:11 [DEBUG] ENV:[jest] +2021-11-19 09:50:11 [DEBUG] --- Linter commands --- +2021-11-19 09:50:11 [DEBUG] ----------------------- +2021-11-19 09:50:11 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 09:50:11 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 09:50:11 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 09:50:11 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 09:50:11 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 09:50:11 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 09:50:11 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 09:50:11 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 09:50:11 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 09:50:11 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 09:50:11 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 09:50:11 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 09:50:11 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 09:50:11 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 09:50:11 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 09:50:11 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 09:50:11 [DEBUG] Linter key: R, command: lintr +2021-11-19 09:50:11 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 09:50:11 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 09:50:11 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 09:50:11 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 09:50:11 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 09:50:11 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 09:50:11 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 09:50:11 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 09:50:11 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 09:50:11 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 09:50:11 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 09:50:11 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 09:50:11 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 09:50:11 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 09:50:11 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 09:50:11 [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 09:50:11 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 09:50:11 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 09:50:11 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 09:50:11 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 09:50:11 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 09:50:11 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 09:50:11 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 09:50:11 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [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 09:50:11 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 09:50:11 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 09:50:11 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 09:50:11 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 09:50:11 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 09:50:11 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 09:50:11 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 09:50:11 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 09:50:11 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 09:50:11 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 09:50:11 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 09:50:11 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 09:50:11 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 09:50:11 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 09:50:11 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 09:50:11 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 09:50:11 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 09:50:11 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 09:50:11 [DEBUG] --------------------------------------------- +2021-11-19 09:50:11 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 09:50:11 [DEBUG] Building file list... +2021-11-19 09:50:11 [DEBUG] Validate all code base: true... +2021-11-19 09:50:11 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 09:50:11 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 09:50:11 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 09:50:11 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 09:50:11 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 09:50:11 [DEBUG] ---------------------------------------------- +2021-11-19 09:50:11 [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 09:50:12 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 09:50:12 [DEBUG] Loading the files list that Git ignores... +2021-11-19 09:50:13 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 09:50:13 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 09:50:13 [DEBUG] ----------------------- +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 09:50:13 [DEBUG] --------------------------------------------- +2021-11-19 09:50:13 [INFO] --------------------------------- +2021-11-19 09:50:13 [INFO] ------ File list to check: ------ +2021-11-19 09:50:13 [INFO] --------------------------------- +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 09:50:13 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 09:50:13 [DEBUG]  +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 09:50:13 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 09:50:13 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 09:50:13 [DEBUG]  +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 09:50:13 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 09:50:13 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 09:50:13 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 09:50:13 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 09:50:13 [DEBUG]  +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 09:50:19 [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 09:50:20 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 09:50:22 [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 09:50:22 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:50:22 [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 09:50:22 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 09:50:22 [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 09:50:22 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [INFO] ---------------------------------------------- +2021-11-19 09:50:22 [INFO] Successfully gathered list of files... +2021-11-19 09:50:22 [DEBUG] --- ENV (before running linters) --- +2021-11-19 09:50:22 [DEBUG] ------------------------------------ +2021-11-19 09:50:22 [DEBUG] ENV: +2021-11-19 09:50:22 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=afc3cc3e3674 +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.Qw0nAkHh3r +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_ALL_CODEBASE=true +VALIDATE_ANSIBLE=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 09:50:22 [DEBUG] ------------------------------------ +2021-11-19 09:50:22 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the ARM language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the BASH language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CPP language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CSHARP language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CSS language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the DART language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the ENV language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 09:50:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 09:50:23 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 09:50:23 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 09:50:23 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 09:50:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 09:50:23 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the GO language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 09:50:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 09:50:23 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 09:50:23 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 09:50:23 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 09:50:23 [DEBUG] Workspace path: /tmp/lint +2021-11-19 09:50:23 [INFO]  +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 09:50:23 [INFO] Linting [GO] files... +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 09:50:23 [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 09:50:23 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:23 [INFO] --------------------------- +2021-11-19 09:50:23 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 09:50:30 [INFO] - File:[closer.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:30 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 09:50: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 09:50:30 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:30 [INFO] --------------------------- +2021-11-19 09:50:30 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 09:50:43 [INFO] - File:[config.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:43 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 09:50:43 [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 09:50:43 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:43 [INFO] --------------------------- +2021-11-19 09:50:43 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 09:50:45 [INFO] - File:[env.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:45 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 09:50: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 09:50:45 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:45 [INFO] --------------------------- +2021-11-19 09:50:45 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 09:50:46 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:46 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 09:50: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 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 09:50:03 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 09:50:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 09:50:04 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 09:50:04 [INFO] - Image Creation Date:[] +2021-11-19 09:50:04 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 09:50:04 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [INFO] The Super-Linter source code can be found at: +2021-11-19 09:50:04 [INFO] - https://github.com/github/super-linter +2021-11-19 09:50:04 [INFO] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] Linter Version Info: +2021-11-19 09:50:04 [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 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [INFO] -------------------------------------------- +2021-11-19 09:50:04 [INFO] Gathering GitHub information... +2021-11-19 09:50:04 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 09:50:04 [INFO] bypassing GitHub Actions variables... +2021-11-19 09:50:04 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 09:50:04 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 09:50:04 [INFO] -------------------------------------------- +2021-11-19 09:50:04 [INFO] Gathering user validation information... +2021-11-19 09:50:04 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 09:50:04 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 09:50:04 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 09:50:04 [DEBUG] Defining variables for GO linter... +2021-11-19 09:50:04 [DEBUG] Setting ERRORS_FOUND_GO variable value to 0... +2021-11-19 09:50:04 [DEBUG] Exporting ERRORS_FOUND_GO variable... +2021-11-19 09:50:04 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 09:50:04 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 09:50:04 [DEBUG] - Excluding [ANSIBLE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [ARM] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [BASH_EXEC] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CLANG_FORMAT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CLOUDFORMATION] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CLOJURE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [COFFEESCRIPT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CPP] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CSHARP] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [CSS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [DART] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [DOCKERFILE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [EDITORCONFIG] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [ENV] files in code base... +2021-11-19 09:50:04 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GITLEAKS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GHERKIN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Validating [GO] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [GROOVY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [HTML] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JAVA] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JAVASCRIPT_ES] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSON] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSONC] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [JSX] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [KOTLIN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [LATEX] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [LUA] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [MARKDOWN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [NATURAL_LANGUAGE] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [OPENAPI] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PERL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_BUILTIN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_PHPCS] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_PHPSTAN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PHP_PSALM] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [POWERSHELL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PROTOBUF] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_BLACK] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_PYLINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_FLAKE8] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_ISORT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [PYTHON_MYPY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [R] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RAKU] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUBY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUST_2015] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUST_2018] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [RUST_CLIPPY] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SCALAFMT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SNAKEMAKE_LINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [STATES] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SQL] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [SQLFLUFF] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TEKTON] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TERRAFORM_TFLINT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TERRAGRUNT] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TSX] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TYPESCRIPT_ES] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [XML] files in code base... +2021-11-19 09:50:04 [DEBUG] - Excluding [YAML] files in code base... +2021-11-19 09:50:04 [DEBUG] --- DEBUG INFO --- +2021-11-19 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] Runner:[root] +2021-11-19 09:50:04 [DEBUG] ENV: +2021-11-19 09:50:04 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=afc3cc3e3674 +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.Qw0nAkHh3r +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_ALL_CODEBASE=true +VALIDATE_ANSIBLE=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 09:50:04 [DEBUG] --------------------------------------------- +2021-11-19 09:50:04 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 09:50:04 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 09:50:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:04 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 09:50:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:04 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 09:50:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:04 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 09:50:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 09:50:04 [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 09:50:04 [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 09:50:04 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 09:50:04 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 09:50:04 [DEBUG] Loading rules for ARM... +2021-11-19 09:50:04 [DEBUG] Getting linter rules for ARM... +2021-11-19 09:50:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:04 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 09:50:04 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:04 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 09:50:04 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:04 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 09:50:04 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 09:50:04 [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 09:50:04 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 09:50:04 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 09:50:04 [DEBUG] Loading rules for BASH... +2021-11-19 09:50:04 [DEBUG] Getting linter rules for BASH... +2021-11-19 09:50:04 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:04 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 09:50:05 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 09:50:05 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 09:50:05 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 09:50: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 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 09:50:05 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for CLOJURE... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 09:50:05 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 09:50:05 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for CPP... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CPP... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 09:50:05 [DEBUG] Loading rules for CSHARP... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 09:50:05 [DEBUG] Loading rules for CSS... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for CSS... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 09:50:05 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for DART... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for DART... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 09:50: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 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 09:50:05 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 09:50: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 09:50:05 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 09:50:05 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 09:50:05 [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 09:50:05 [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 09:50:05 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 09:50:05 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 09:50:05 [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 09:50:05 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 09:50:05 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for ENV... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for ENV... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 09:50:05 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 09:50:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:05 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 09:50:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:05 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 09:50:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:05 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 09:50:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 09:50:05 [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 09:50:05 [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 09:50:05 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 09:50:05 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 09:50:05 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 09:50:05 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 09:50:06 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for GHERKIN... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 09:50:06 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for GO... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GO... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 09:50:06 [INFO] ---------------------------------------------- +2021-11-19 09:50:06 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 09:50:06 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 09:50:06 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 09:50:06 [DEBUG] Loading rules for GROOVY... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 09:50:06 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for HTML... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for HTML... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 09:50:06 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JAVA... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JAVA... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 09:50:06 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:06 [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 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:06 [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 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:06 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JSCPD... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:06 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 09:50:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:06 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 09:50:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 09:50:06 [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 09:50:06 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 09:50:06 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 09:50:06 [DEBUG] Loading rules for JSON... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSON... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 09:50:06 [DEBUG] Loading rules for JSONC... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSONC... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 09:50:06 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 09:50:06 [DEBUG] Loading rules for JSX... +2021-11-19 09:50:06 [DEBUG] Getting linter rules for JSX... +2021-11-19 09:50:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:06 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:07 [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 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:07 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 09:50:07 [DEBUG] Loading rules for KOTLIN... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 09:50:07 [DEBUG] Loading rules for LATEX... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for LATEX... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 09:50:07 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for LUA... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for LUA... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 09:50:07 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 09:50:07 [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 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 09:50:07 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 09:50:07 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for OPENAPI... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 09:50:07 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:07 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 09:50:07 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:07 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 09:50:07 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 09:50:07 [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 09:50:07 [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 09:50:07 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 09:50:07 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 09:50:07 [DEBUG] Loading rules for PERL... +2021-11-19 09:50:07 [DEBUG] Getting linter rules for PERL... +2021-11-19 09:50:07 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:07 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 09:50:08 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 09:50:08 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 09:50:08 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 09:50:08 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 09:50:08 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 09:50:08 [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 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 09:50:08 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:08 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 09:50:08 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:08 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 09:50:08 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 09:50:08 [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 09:50:08 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 09:50:08 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 09:50:08 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 09:50:08 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 09:50:08 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:08 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 09:50:08 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 09:50:09 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for R... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for R... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 09:50:09 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for RAKU... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RAKU... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 09:50:09 [DEBUG] Loading rules for RUBY... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUBY... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 09:50:09 [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 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 09:50:09 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for RUST_2015... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 09:50:09 [DEBUG] Loading rules for RUST_2018... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 09:50:09 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 09:50:09 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 09:50:09 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 09:50:09 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 09:50:09 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:09 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 09:50:09 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:09 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 09:50:09 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 09:50:09 [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 09:50:09 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 09:50:09 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 09:50:09 [DEBUG] Loading rules for STATES... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for STATES... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 09:50:09 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 09:50:09 [DEBUG] Loading rules for SQL... +2021-11-19 09:50:09 [DEBUG] Getting linter rules for SQL... +2021-11-19 09:50:09 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:09 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 09:50:10 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 09:50:10 [DEBUG] Loading rules for TEKTON... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 09:50:10 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 09:50:10 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 09:50:10 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 09:50:10 [DEBUG] Loading rules for TSX... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TSX... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 09:50:10 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 09:50:10 [DEBUG] Loading rules for XML... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for XML... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 09:50:10 [DEBUG] Loading rules for YAML... +2021-11-19 09:50:10 [DEBUG] Getting linter rules for YAML... +2021-11-19 09:50:10 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 09:50:10 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 09:50:10 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 09:50:10 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 09:50:10 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 09:50:10 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 09:50:10 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 09:50:10 [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 09:50:10 [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 09:50:10 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 09:50:10 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 09:50:10 [DEBUG] ENV:[browser] +2021-11-19 09:50:10 [DEBUG] ENV:[es6] +2021-11-19 09:50:10 [DEBUG] ENV:[jest] +2021-11-19 09:50:11 [DEBUG] ENV:[browser] +2021-11-19 09:50:11 [DEBUG] ENV:[es6] +2021-11-19 09:50:11 [DEBUG] ENV:[jest] +2021-11-19 09:50:11 [DEBUG] --- Linter commands --- +2021-11-19 09:50:11 [DEBUG] ----------------------- +2021-11-19 09:50:11 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 09:50:11 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 09:50:11 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 09:50:11 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 09:50:11 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 09:50:11 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 09:50:11 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 09:50:11 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 09:50:11 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 09:50:11 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 09:50:11 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 09:50:11 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 09:50:11 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 09:50:11 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 09:50:11 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 09:50:11 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 09:50:11 [DEBUG] Linter key: R, command: lintr +2021-11-19 09:50:11 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 09:50:11 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 09:50:11 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 09:50:11 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 09:50:11 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 09:50:11 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 09:50:11 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 09:50:11 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 09:50:11 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 09:50:11 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 09:50:11 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 09:50:11 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 09:50:11 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 09:50:11 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 09:50:11 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 09:50:11 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 09:50:11 [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 09:50:11 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 09:50:11 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 09:50:11 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 09:50:11 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 09:50:11 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 09:50:11 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 09:50:11 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 09:50:11 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [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 09:50:11 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 09:50:11 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 09:50:11 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 09:50:11 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 09:50:11 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 09:50:11 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 09:50:11 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 09:50:11 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 09:50:11 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 09:50:11 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 09:50:11 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 09:50:11 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 09:50:11 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 09:50:11 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 09:50:11 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 09:50:11 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 09:50:11 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 09:50:11 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 09:50:11 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 09:50:11 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 09:50:11 [DEBUG] --------------------------------------------- +2021-11-19 09:50:11 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 09:50:11 [DEBUG] Building file list... +2021-11-19 09:50:11 [DEBUG] Validate all code base: true... +2021-11-19 09:50:11 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 09:50:11 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 09:50:11 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 09:50:11 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 09:50:11 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 09:50:11 [DEBUG] ---------------------------------------------- +2021-11-19 09:50:11 [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 09:50:12 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/workflows/ci.yml /tmp/lint/.gitignore /tmp/lint/.golangci.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/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 09:50:12 [DEBUG] Loading the files list that Git ignores... +2021-11-19 09:50:13 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store /tmp/lint/tmp/ +2021-11-19 09:50:13 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 09:50:13 [DEBUG] ----------------------- +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/tmp/, value: 4 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 09:50:13 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 09:50:13 [DEBUG] --------------------------------------------- +2021-11-19 09:50:13 [INFO] --------------------------------- +2021-11-19 09:50:13 [INFO] ------ File list to check: ------ +2021-11-19 09:50:13 [INFO] --------------------------------- +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 09:50:13 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 09:50:13 [DEBUG]  +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.github/workflows/ci.yml], File_type:[yml], Base_file:[ci.yml] +2021-11-19 09:50:13 [WARN] File:{/tmp/lint/.github/workflows/ci.yml} existed in commit data, but not found on file system, skipping... +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 09:50:13 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 09:50:13 [DEBUG]  +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 09:50:13 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 09:50:13 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 09:50:13 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 09:50:13 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 09:50:13 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 09:50:13 [DEBUG]  +2021-11-19 09:50:13 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 09:50:13 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 09:50:13 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 09:50:14 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 09:50:14 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:14 [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 09:50:14 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:14 [DEBUG]  +2021-11-19 09:50:14 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 09:50:15 [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 09:50:15 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 09:50:15 [DEBUG]  +2021-11-19 09:50:15 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 09:50:16 [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 09:50:16 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:16 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 09:50:16 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 09:50:16 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 09:50:16 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 09:50:17 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 09:50:17 [DEBUG]  +2021-11-19 09:50:17 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 09:50:17 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 09:50:18 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 09:50:18 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:18 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 09:50:18 [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 09:50:18 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 09:50:18 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 09:50:19 [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 09:50:19 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:19 [DEBUG]  +2021-11-19 09:50:19 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 09:50:19 [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 09:50:20 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 09:50:20 [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 09:50:20 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 09:50:20 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 09:50:20 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 09:50:20 [DEBUG]  +2021-11-19 09:50:20 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:21 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 09:50:21 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 09:50:21 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 09:50:21 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 09:50:22 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 09:50:22 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 09:50:22 [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 09:50:22 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 09:50:22 [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 09:50:22 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 09:50:22 [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 09:50:22 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 09:50:22 [DEBUG]  +2021-11-19 09:50:22 [INFO] ---------------------------------------------- +2021-11-19 09:50:22 [INFO] Successfully gathered list of files... +2021-11-19 09:50:22 [DEBUG] --- ENV (before running linters) --- +2021-11-19 09:50:22 [DEBUG] ------------------------------------ +2021-11-19 09:50:22 [DEBUG] ENV: +2021-11-19 09:50:22 [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_GITHUB_ACTIONS=0 +ERRORS_FOUND_GO=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=afc3cc3e3674 +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.Qw0nAkHh3r +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_ALL_CODEBASE=true +VALIDATE_ANSIBLE=false +VALIDATE_ARM=false +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=false +VALIDATE_CLANG_FORMAT=false +VALIDATE_CLOJURE=false +VALIDATE_CLOUDFORMATION=false +VALIDATE_COFFEESCRIPT=false +VALIDATE_CPP=false +VALIDATE_CSHARP=false +VALIDATE_CSS=false +VALIDATE_DART=false +VALIDATE_DOCKERFILE=false +VALIDATE_DOCKERFILE_HADOLINT=false +VALIDATE_EDITORCONFIG=false +VALIDATE_ENV=false +VALIDATE_GHERKIN=false +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=false +VALIDATE_GO=true +VALIDATE_GOOGLE_JAVA_FORMAT=false +VALIDATE_GROOVY=false +VALIDATE_HTML=false +VALIDATE_JAVA=false +VALIDATE_JAVASCRIPT_ES=false +VALIDATE_JAVASCRIPT_STANDARD=false +VALIDATE_JSCPD=false +VALIDATE_JSON=false +VALIDATE_JSONC=false +VALIDATE_JSX=false +VALIDATE_KOTLIN=false +VALIDATE_KUBERNETES_KUBEVAL=false +VALIDATE_LATEX=false +VALIDATE_LUA=false +VALIDATE_MARKDOWN=false +VALIDATE_NATURAL_LANGUAGE=false +VALIDATE_OPENAPI=false +VALIDATE_PERL=false +VALIDATE_PHP_BUILTIN=false +VALIDATE_PHP_PHPCS=false +VALIDATE_PHP_PHPSTAN=false +VALIDATE_PHP_PSALM=false +VALIDATE_POWERSHELL=false +VALIDATE_PROTOBUF=false +VALIDATE_PYTHON_BLACK=false +VALIDATE_PYTHON_FLAKE8=false +VALIDATE_PYTHON_ISORT=false +VALIDATE_PYTHON_MYPY=false +VALIDATE_PYTHON_PYLINT=false +VALIDATE_R=false +VALIDATE_RAKU=false +VALIDATE_RUBY=false +VALIDATE_RUST_2015=false +VALIDATE_RUST_2018=false +VALIDATE_RUST_CLIPPY=false +VALIDATE_SCALAFMT=false +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=false +VALIDATE_SNAKEMAKE_SNAKEFMT=false +VALIDATE_SQL=false +VALIDATE_SQLFLUFF=false +VALIDATE_STATES=false +VALIDATE_TEKTON=false +VALIDATE_TERRAFORM_TERRASCAN=false +VALIDATE_TERRAFORM_TFLINT=false +VALIDATE_TERRAGRUNT=false +VALIDATE_TSX=false +VALIDATE_TYPESCRIPT_ES=false +VALIDATE_TYPESCRIPT_STANDARD=false +VALIDATE_XML=false +VALIDATE_YAML=false +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 09:50:22 [DEBUG] ------------------------------------ +2021-11-19 09:50:22 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the ARM language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the BASH language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CPP language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CSHARP language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the CSS language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the DART language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 09:50:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:22 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the ENV language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 09:50:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 09:50:23 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents:  +2021-11-19 09:50:23 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 09:50:23 [DEBUG] - No files found in changeset to lint for language:[GITHUB_ACTIONS] +2021-11-19 09:50:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 09:50:23 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 09:50:23 [DEBUG] Running linter for the GO language... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 09:50:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_NAME to golangci-lint... +2021-11-19 09:50:23 [DEBUG] Setting LINTER_COMMAND to golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml... +2021-11-19 09:50:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GO... +2021-11-19 09:50:23 [DEBUG] FILE_ARRAY_GO file array contents: /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/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/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/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 09:50:23 [DEBUG] Invoking golangci-lint linter. TEST_CASE_RUN: false +2021-11-19 09:50:23 [DEBUG] SKIP_FLAG: 0, list of files to lint: /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/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/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/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 09:50:23 [DEBUG] Workspace path: /tmp/lint +2021-11-19 09:50:23 [INFO]  +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [DEBUG] Running LintCodebase. FILE_TYPE: GO. Linter name: golangci-lint, linter command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /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/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/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/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 09:50:23 [INFO] Linting [GO] files... +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [INFO] ---------------------------------------------- +2021-11-19 09:50:23 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 09:50:23 [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 09:50:23 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:23 [INFO] --------------------------- +2021-11-19 09:50:23 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 09:50:30 [INFO] - File:[closer.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:30 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 09:50: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 09:50:30 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:30 [INFO] --------------------------- +2021-11-19 09:50:30 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 09:50:43 [INFO] - File:[config.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:43 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 09:50:43 [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 09:50:43 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:43 [INFO] --------------------------- +2021-11-19 09:50:43 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 09:50:45 [INFO] - File:[env.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:45 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 09:50: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 09:50:45 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go +2021-11-19 09:50:45 [INFO] --------------------------- +2021-11-19 09:50:45 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 09:50:46 [INFO] - File:[errors.go] was linted with [golangci-lint] successfully +2021-11-19 09:50:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 09:50:46 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 09:50: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 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]