aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gitlab.com
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2022-09-05 14:27:54 +0200
committerGitHub <noreply@github.com>2022-09-05 12:27:54 +0000
commitb2f2446b46bf02821d90ebedadae2bf7ae0e880e (patch)
tree923cf42842918d6bebca1d6bbdc08abed54d274d /vendor/gitlab.com
parente6654faff4bcca4be92e9a8596fd4b77f747c39e (diff)
go.mod, vendor: update (#3358)
* go.mod, vendor: remove unnecessary dependencies Commands: 1. go mod tidy 2. go mod vendor * go.mod, vendor: update cloud.google.com/go Commands: 1. go get -u cloud.google.com/go 2. go mod tidy 3. go mod vendor * go.mod, vendor: update cloud.google.com/* Commands: 1. go get -u cloud.google.com/storage cloud.google.com/logging 2. go mod tidy 3. go mod vendor * go.mod, .golangci.yml, vendor: update *lint* Commands: 1. go get -u golang.org/x/tools github.com/golangci/golangci-lint@v1.47.0 2. go mod tidy 3. go mod vendor 4. edit .golangci.yml to suppress new errors (resolved in the same PR later) * all: fix lint errors hash.go: copy() recommended by gosimple parse.go: ent is never nil verifier.go: signal.Notify() with unbuffered channel is bad. Have no idea why. * .golangci.yml: adjust godot rules check-all is deprecated, but still work if you're hesitating too - I'll remove this commit
Diffstat (limited to 'vendor/gitlab.com')
-rw-r--r--vendor/gitlab.com/bosi/decorder/.gitignore7
-rw-r--r--vendor/gitlab.com/bosi/decorder/.gitlab-ci.params.yml15
-rw-r--r--vendor/gitlab.com/bosi/decorder/.gitlab-ci.yml61
-rw-r--r--vendor/gitlab.com/bosi/decorder/LICENSE.md16
-rw-r--r--vendor/gitlab.com/bosi/decorder/Makefile7
-rw-r--r--vendor/gitlab.com/bosi/decorder/README.md40
-rw-r--r--vendor/gitlab.com/bosi/decorder/analyzer.go196
-rw-r--r--vendor/gitlab.com/bosi/decorder/go.mod11
-rw-r--r--vendor/gitlab.com/bosi/decorder/go.sum40
-rw-r--r--vendor/gitlab.com/bosi/decorder/renovate.json26
10 files changed, 419 insertions, 0 deletions
diff --git a/vendor/gitlab.com/bosi/decorder/.gitignore b/vendor/gitlab.com/bosi/decorder/.gitignore
new file mode 100644
index 000000000..7b533f819
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/.gitignore
@@ -0,0 +1,7 @@
+/.idea
+/.env
+/decorder
+/deforder
+/LICENSES-3RD-PARTY
+/ytt
+/yq \ No newline at end of file
diff --git a/vendor/gitlab.com/bosi/decorder/.gitlab-ci.params.yml b/vendor/gitlab.com/bosi/decorder/.gitlab-ci.params.yml
new file mode 100644
index 000000000..fe6b85288
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/.gitlab-ci.params.yml
@@ -0,0 +1,15 @@
+#@data/values
+---
+
+app:
+ name: decorder
+
+code_quality:
+ enable_tests: true
+ enable_static_code_analyses: true
+ enable_license_check: true
+
+deployment:
+ enable_rc_handling: false
+ use_gitlab_container_registry: false
+ enable_image_build_and_deploy: false
diff --git a/vendor/gitlab.com/bosi/decorder/.gitlab-ci.yml b/vendor/gitlab.com/bosi/decorder/.gitlab-ci.yml
new file mode 100644
index 000000000..691da8ac7
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/.gitlab-ci.yml
@@ -0,0 +1,61 @@
+###############################
+# This file is auto-generated #
+###############################
+
+variables:
+ APP_NAME: decorder
+
+stages:
+ - test
+ - build
+ - release
+
+test:
+ stage: test
+ image: golang:1.18.3@sha256:1c3d22f95ce57821fff1dcd857c54809ea62f33634e2696e0d623e077c97bb8f
+ before_script:
+ - set -eu
+ - if [[ -f .env.pipeline ]];then cp .env.pipeline .env;fi
+ - mkdir -p ~/.ssh
+ - touch ~/.ssh/known_hosts
+ - ssh-keyscan gitlab.com > ~/.ssh/known_hosts
+ retry: 2
+ script:
+ - '### run tests ###'
+ - make test
+ - make test-cover
+
+lint:source-code:
+ stage: test
+ image: golangci/golangci-lint:v1.46.2-alpine@sha256:6a09f1e87ecce4eab163470467cd88dab3a0efa31cb708ba6d514a6889816095
+ script:
+ - '### run linter ###'
+ - golangci-lint run ./...
+
+license-check:
+ stage: test
+ image: golang:1.18.3@sha256:1c3d22f95ce57821fff1dcd857c54809ea62f33634e2696e0d623e077c97bb8f
+ before_script:
+ - set -eu
+ - if [[ -f .env.pipeline ]];then cp .env.pipeline .env;fi
+ - mkdir -p ~/.ssh
+ - touch ~/.ssh/known_hosts
+ - ssh-keyscan gitlab.com > ~/.ssh/known_hosts
+ script:
+ - '### run license-check ###'
+ - make check-licenses
+ artifacts:
+ paths:
+ - LICENSES-3RD-PARTY
+ expire_in: 7 days
+
+pages:
+ stage: release
+ image: golang:1.18.3@sha256:1c3d22f95ce57821fff1dcd857c54809ea62f33634e2696e0d623e077c97bb8f
+ only:
+ - tags
+ script:
+ - make gitlab-pages
+ artifacts:
+ paths:
+ - public/
diff --git a/vendor/gitlab.com/bosi/decorder/LICENSE.md b/vendor/gitlab.com/bosi/decorder/LICENSE.md
new file mode 100644
index 000000000..d46c30e18
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/LICENSE.md
@@ -0,0 +1,16 @@
+MIT License
+
+Copyright (c) 2021 Florian Bosdorff
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
+persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
+Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file
diff --git a/vendor/gitlab.com/bosi/decorder/Makefile b/vendor/gitlab.com/bosi/decorder/Makefile
new file mode 100644
index 000000000..8d4c05690
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/Makefile
@@ -0,0 +1,7 @@
+include project-templates/base.mk
+
+project-templates/base.mk:
+ @cp -ar ~/.dotfiles/projects/golang ./project-templates
+
+.env:
+ touch .env \ No newline at end of file
diff --git a/vendor/gitlab.com/bosi/decorder/README.md b/vendor/gitlab.com/bosi/decorder/README.md
new file mode 100644
index 000000000..e72954937
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/README.md
@@ -0,0 +1,40 @@
+# Decorder
+
+A declaration order linter for golang. In case of this tool declarations are `type`, `const`, `var` and `func`.
+
+## Rules
+
+This linter applies multiple rules where each can be disabled via cli parameter.
+
+| rule | description | cli-options |
+|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------|
+| declaration order | Enforces the order of global declarations (e.g. all global constants are always defined before variables). You can also define a subset of declarations if you don't want to enforce the order of all of them. | * disable check: `-disable-dec-order-check` <br> * custom order: `-dec-order var,const,func,type` |
+| declaration number | Enforces that the statements const, var and type are only used once per file. You have to use parenthesis to declare e.g multiple global types inside a file. | disable check: `-disable-dec-num-check` |
+| init func first | Enforces the init func to be the first function in file. | disable check: `-disable-init-func-first-check` |
+
+You may find the implementation of the rules inside `analyzer.go`.
+
+## Installation
+
+```shell
+go install gitlab.com/bosi/decorder/cmd/decorder
+```
+
+## Usage
+
+```shell
+# with default options
+decorder ./...
+
+# custom declaration order
+decorder -dec-order var,const,func,type ./...
+
+# disable declaration order check
+decorder -disable-dec-order-check ./...
+
+# disable check for multiple declarations statements
+decorder -disable-dec-num-check ./...
+
+# disable check that init func is always first function
+decorder -disable-init-func-first-check ./...
+``` \ No newline at end of file
diff --git a/vendor/gitlab.com/bosi/decorder/analyzer.go b/vendor/gitlab.com/bosi/decorder/analyzer.go
new file mode 100644
index 000000000..b417e1cd6
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/analyzer.go
@@ -0,0 +1,196 @@
+package decorder
+
+import (
+ "go/ast"
+ "go/token"
+ "strings"
+
+ "golang.org/x/tools/go/analysis"
+)
+
+type (
+ decNumChecker struct {
+ tokenMap map[string]token.Token
+ tokenCounts map[token.Token]int
+ decOrder []string
+ funcPoss []funcPos
+ }
+
+ funcPos struct {
+ start token.Pos
+ end token.Pos
+ }
+)
+
+const (
+ Name = "decorder"
+
+ FlagDo = "dec-order"
+ FlagDdnc = "disable-dec-num-check"
+ FlagDdoc = "disable-dec-order-check"
+ FlagDiffc = "disable-init-func-first-check"
+)
+
+var (
+ Analyzer = &analysis.Analyzer{
+ Name: Name,
+ Doc: "check declaration order and count of types, constants, variables and functions",
+ Run: run,
+ }
+
+ decOrder string
+ disableDecNumCheck bool
+ disableDecOrderCheck bool
+ disableInitFuncFirstCheck bool
+
+ tokens = []token.Token{token.TYPE, token.CONST, token.VAR, token.FUNC}
+)
+
+//nolint:lll
+func init() {
+ Analyzer.Flags.StringVar(&decOrder, FlagDo, "type,const,var,func", "define the required order of types, constants, variables and functions declarations inside a file")
+ Analyzer.Flags.BoolVar(&disableDecNumCheck, FlagDdnc, false, "option to disable check for number of e.g. var declarations inside file")
+ Analyzer.Flags.BoolVar(&disableDecOrderCheck, FlagDdoc, false, "option to disable check for order of declarations inside file")
+ Analyzer.Flags.BoolVar(&disableInitFuncFirstCheck, FlagDiffc, false, "option to disable check that init function is always first function in file")
+}
+
+func run(pass *analysis.Pass) (interface{}, error) {
+ for _, f := range pass.Files {
+ ast.Inspect(f, runDeclNumAndDecOrderCheck(pass))
+
+ if !disableInitFuncFirstCheck {
+ ast.Inspect(f, runInitFuncFirstCheck(pass))
+ }
+ }
+
+ return nil, nil
+}
+
+func runInitFuncFirstCheck(pass *analysis.Pass) func(ast.Node) bool {
+ nonInitFound := false
+
+ return func(n ast.Node) bool {
+ dec, ok := n.(*ast.FuncDecl)
+ if !ok {
+ return true
+ }
+
+ if dec.Name.Name == "init" && dec.Recv == nil {
+ if nonInitFound {
+ pass.Reportf(dec.Pos(), "init func must be the first function in file")
+ }
+ } else {
+ nonInitFound = true
+ }
+
+ return true
+ }
+}
+
+func runDeclNumAndDecOrderCheck(pass *analysis.Pass) func(ast.Node) bool {
+ dnc := newDecNumChecker()
+
+ return func(n ast.Node) bool {
+ fd, ok := n.(*ast.FuncDecl)
+ if ok {
+ return dnc.handleFuncDec(fd, pass)
+ }
+
+ gd, ok := n.(*ast.GenDecl)
+ if !ok {
+ return true
+ }
+
+ if dnc.isInsideFunction(gd) {
+ return true
+ }
+
+ if !disableDecNumCheck {
+ dnc.handleDecNumCheck(gd, pass)
+ }
+
+ if !disableDecOrderCheck {
+ dnc.handleDecOrderCheck(gd, pass)
+ }
+
+ return true
+ }
+}
+
+func newDecNumChecker() decNumChecker {
+ dnc := decNumChecker{
+ tokenMap: map[string]token.Token{},
+ tokenCounts: map[token.Token]int{},
+ decOrder: []string{},
+ funcPoss: []funcPos{},
+ }
+
+ for _, t := range tokens {
+ dnc.tokenCounts[t] = 0
+ dnc.tokenMap[t.String()] = t
+ }
+
+ for _, do := range strings.Split(decOrder, ",") {
+ dnc.decOrder = append(dnc.decOrder, strings.TrimSpace(do))
+ }
+
+ return dnc
+}
+
+func (dnc decNumChecker) isToLate(t token.Token) (string, bool) {
+ for i, do := range dnc.decOrder {
+ if do == t.String() {
+ for j := i + 1; j < len(dnc.decOrder); j++ {
+ if dnc.tokenCounts[dnc.tokenMap[dnc.decOrder[j]]] > 0 {
+ return dnc.decOrder[j], false
+ }
+ }
+ return "", true
+ }
+ }
+
+ return "", true
+}
+
+func (dnc *decNumChecker) handleDecNumCheck(gd *ast.GenDecl, pass *analysis.Pass) {
+ for _, t := range tokens {
+ if gd.Tok == t {
+ dnc.tokenCounts[t]++
+
+ if dnc.tokenCounts[t] > 1 {
+ pass.Reportf(gd.Pos(), "multiple \"%s\" declarations are not allowed; use parentheses instead", t.String())
+ }
+ }
+ }
+}
+
+func (dnc decNumChecker) handleDecOrderCheck(gd *ast.GenDecl, pass *analysis.Pass) {
+ l, c := dnc.isToLate(gd.Tok)
+ if !c {
+ pass.Reportf(gd.Pos(), "%s must not be placed after %s", gd.Tok.String(), l)
+ }
+}
+
+func (dnc decNumChecker) isInsideFunction(dn *ast.GenDecl) bool {
+ for _, poss := range dnc.funcPoss {
+ if poss.start < dn.Pos() && poss.end > dn.Pos() {
+ return true
+ }
+ }
+ return false
+}
+
+func (dnc *decNumChecker) handleFuncDec(fd *ast.FuncDecl, pass *analysis.Pass) bool {
+ dnc.funcPoss = append(dnc.funcPoss, funcPos{start: fd.Pos(), end: fd.End()})
+
+ dnc.tokenCounts[token.FUNC]++
+
+ if !disableDecOrderCheck {
+ l, c := dnc.isToLate(token.FUNC)
+ if !c {
+ pass.Reportf(fd.Pos(), "%s must not be placed after %s", token.FUNC.String(), l)
+ }
+ }
+
+ return true
+}
diff --git a/vendor/gitlab.com/bosi/decorder/go.mod b/vendor/gitlab.com/bosi/decorder/go.mod
new file mode 100644
index 000000000..6929f14ea
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/go.mod
@@ -0,0 +1,11 @@
+module gitlab.com/bosi/decorder
+
+go 1.17
+
+require golang.org/x/tools v0.1.11
+
+require (
+ golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
+ golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
+ golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
+)
diff --git a/vendor/gitlab.com/bosi/decorder/go.sum b/vendor/gitlab.com/bosi/decorder/go.sum
new file mode 100644
index 000000000..3c00a3071
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/go.sum
@@ -0,0 +1,40 @@
+github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
+golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
+golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
+golang.org/x/mod v0.5.1 h1:OJxoQ/rynoF0dcCdI7cLPktw/hR2cueqYfjm43oqK38=
+golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro=
+golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 h1:kQgndtyPBW/JIYERgdxfwMYh3AVStj88WQTlNDi2a+o=
+golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY=
+golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s=
+golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
+golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
+golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
+golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
+golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 h1:id054HUawV2/6IGm2IV8KZQjqtwAOo2CYlOToYqa0d0=
+golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e h1:fLOSk5Q00efkSvAm+4xcoXD+RRmLmmulPn5I3Y9F2EM=
+golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
+golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
+golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
+golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
+golang.org/x/tools v0.1.8 h1:P1HhGGuLW4aAclzjtmJdf0mJOjVUZUzOTqkAkWL+l6w=
+golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU=
+golang.org/x/tools v0.1.9 h1:j9KsMiaP1c3B0OTQGth0/k+miLGTgLsAFUCrF2vLcF8=
+golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU=
+golang.org/x/tools v0.1.10 h1:QjFRCZxdOhBJ/UNgnBZLbNV13DlbnK0quyivTnXJM20=
+golang.org/x/tools v0.1.10/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E=
+golang.org/x/tools v0.1.11 h1:loJ25fNOEhSXfHrpoGj91eCUThwdNX6u24rO1xnNteY=
+golang.org/x/tools v0.1.11/go.mod h1:SgwaegtQh8clINPpECJMqnxLv9I09HLqnW3RMqW0CA4=
+golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
+golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
diff --git a/vendor/gitlab.com/bosi/decorder/renovate.json b/vendor/gitlab.com/bosi/decorder/renovate.json
new file mode 100644
index 000000000..95cf1af02
--- /dev/null
+++ b/vendor/gitlab.com/bosi/decorder/renovate.json
@@ -0,0 +1,26 @@
+{
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "extends": [
+ "config:base",
+ "group:allNonMajor",
+ ":automergePatch",
+ ":automergeMinor",
+ ":automergeLinters",
+ ":automergeTesters",
+ ":automergeTypes"
+ ],
+ "enabled": true,
+ "dependencyDashboard": false,
+ "separateMajorMinor": true,
+ "separateMultipleMajor": false,
+ "prHourlyLimit": 2,
+ "prConcurrentLimit": 10,
+ "labels": [
+ "depUpdate"
+ ],
+ "updateLockFiles": true,
+ "docker": {
+ "pinDigests": true
+ }
+}
+