-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🌱 Remove lint ignore for comments and unhandled errors #2383
🌱 Remove lint ignore for comments and unhandled errors #2383
Conversation
@@ -268,25 +268,25 @@ issues: | |||
- linters: | |||
- revive | |||
text: "package-comments" | |||
path: ^(main|(packaging|apis|controllers|feature|test|pkg)\/.*)\.go$ | |||
path: ^(apis/(v1alpha3|v1alpha4)\/.*)\.go$ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left the ignore on these packages - they're going to be removed relatively soon so I think it's find to leave them as is instead of fixing them up.
08c1989
to
3bd563c
Compare
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #2383 +/- ##
==========================================
- Coverage 60.83% 60.67% -0.16%
==========================================
Files 164 164
Lines 9469 9473 +4
==========================================
- Hits 5760 5748 -12
- Misses 3295 3307 +12
- Partials 414 418 +4
☔ View full report in Codecov by Sentry. |
3bd563c
to
eb0b10a
Compare
0cba185
to
dfa31df
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thx for this work.
A couple of nits :-)
pkg/util/vmware/util.go
Outdated
// This is also the name used by VSphereMachineTemplate and KubeadmConfigTemplate. | ||
// TODO: (killianmuldoon) remove this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice finding.
Is this TODO for this PR or a follow-up?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Follow up - I didn't want to complicate this PR 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed this to avoid having to rebase
/approve Wow that was very quick 😂 |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: chrischdi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
2aaab11
to
b4025de
Compare
/hold For squash |
Signed-off-by: killianmuldoon <[email protected]>
b4025de
to
653d6e9
Compare
@killianmuldoon: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/hold cancel |
/lgtm |
LGTM label has been added. Git tree hash: 1d956629e806e739ff75c01a9da2e422506aacdf
|
Remove golangci-lint config related to skipping linters for comments across multiple packages. Fixed the finding by adding a number of comments across the codebase.
Part of #2058