-
Notifications
You must be signed in to change notification settings - Fork 4
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
up go to 1.18 to support generics code #203
base: master
Are you sure you want to change the base?
Conversation
@@ -6,7 +6,6 @@ | |||
"fast": false, | |||
"linters": { | |||
"enable": [ |
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.
All deleted linters now are deprecated in favor of unused linter.
@@ -6,8 +6,8 @@ package imports | |||
// otherwise a parsing error will be returned. | |||
// | |||
// We perform these operations: | |||
// 1. Remove unused imports from a file. |
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.
golangci-lint says that file is not gofmt-ed with -s, fixed it.
@@ -15,6 +15,5 @@ func TestRulesGo1_18(t *testing.T) { | |||
if ver := testVersionConstraints[key]; ver != "1.18" { | |||
continue | |||
} | |||
runRulesTest(t, key) |
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.
still have no idea what to do this function, temporary deleted it
Up go to 1.18 and other necessary dependencies to make perfguard work with generics code. But still have no idea what to do with missing function runRulesTest(t, key).