You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
outputFile=$(sed 's/{{-//'$image_tpl_path| sed 's/}}//'| sed 's/define//'| sed 's/-//'| sed 's/end//'| sed 's/"//'| sed 's/"//'|sed 's/image.//'| sed -e 's/^[ \t]*//'| awk -v RS= '{for (i=1; i<=NF; i++) printf "%s%s", $i, (i==NF?"\n":" ")}')
87
-
echo"enriching component descriptor from ${image_tpl_path}"
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/support.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,5 +9,5 @@ STOP -- PLEASE READ!
9
9
10
10
GitHub is not the right place for support requests.
11
11
12
-
If you're looking for help, please post your question on the [Kubernetes Slack](http://slack.k8s.io/) ([#gardener](https://kubernetes.slack.com/messages/gardener) channel) or join our [bi-weekly meetings](https://gardener.cloud/docs/contribute/#bi-weekly-meetings).
12
+
If you're looking for help, please post your question on the [Gardener Slack](https://gardener-cloud.slack.com/) (join the workspace [here](https://gardener.cloud/community/community-bio/)) or join our [bi-weekly meetings](https://gardener.cloud/community/).
text: 'SA1019:'# Excludes messages where deprecated variables are used
47
+
- linters:
48
+
- staticcheck
49
+
text: 'ST1001:'# should not use dot imports
50
+
# errcheck: Almost all programs ignore errors on these functions and in most cases it's ok
51
+
- path: (.+)\.go$
52
+
text: Error return value of .((os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*print(f|ln)?|os\.(Un)?Setenv). is not checked
53
+
# revive:
54
+
- path: (.+)\.go$
55
+
text: var-naming # ((var|const|struct field|func) .* should be .*
56
+
- path: (.+)\.go$
57
+
text: dot-imports # should not use dot imports
58
+
- path: (.+)\.go$
59
+
text: package-comments # package comment should be of the form
60
+
- path: (.+)\.go$
61
+
text: unexported-return # exported func .* returns unexported type .*, which can be annoying to use
62
+
- path: (.+)\.go$
63
+
text: indent-error-flow # if block ends with a return statement, so drop this else and outdent its block
64
+
- path: (.+)\.go$
65
+
text: 'exported: (type|func) name will be used as .* by other packages, and that stutters;'
66
+
- path: (.+)\.go$
67
+
text: exported function Convert_.* should have comment or be unexported
68
+
- path: (.+)\.go$
69
+
text: redundant-import-alias
70
+
# typecheck:
71
+
- path: (.+)\.go$
72
+
text: 'undeclared name: `.*`'
73
+
- path: (.+)\.go$
74
+
text: '".*" imported but not used'
75
+
# allow non-capitalized messages if they start with technical terms
76
+
- path: (.+)\.go$
77
+
text: 'structured logging message should be capitalized: "garden(er-apiserver|er-controller-manager|er-admission-controller|er-operator|er-resource-manager|let)'
78
+
paths:
79
+
- zz_generated\..*\.go$
80
+
- examples$
81
+
formatters: # how code formatting is handled
82
+
settings:
83
+
gofmt:
84
+
rewrite-rules:
85
+
- pattern: interface{}
86
+
replacement: any
87
+
exclusions:
88
+
generated: lax
89
+
paths:
90
+
- examples$
18
91
issues:
19
-
exclude-use-default: false
20
-
exclude:
21
-
# revive
22
-
- var-naming # ((var|const|struct field|func) .* should be .*
23
-
- dot-imports # should not use dot imports
24
-
- package-comments # package comment should be of the form
25
-
- indent-error-flow # if block ends with a return statement, so drop this else and outdent its block
26
-
- unexported-return # exported func .* returns unexported type .*, which can be annoying to use
27
-
- "exported: (type|func) name will be used as .* by other packages, and that stutters;"
28
-
# typecheck:
29
-
- "undeclared name: `.*`"
30
-
- "\".*\" imported but not used"
31
-
exclude-rules:
32
-
- linters:
33
-
- staticcheck
34
-
text: "SA1019:"# Excludes messages where deprecated variables are used
92
+
max-issues-per-linter: 0# A value of 0 means no limit
0 commit comments