We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Two or more invocations have the same effect as one.
(base) mspreitz@mjs12 test3 % cat main.go package main import ( "context" // comment "flag" "net" "os" "time" ) func main() { } (base) mspreitz@mjs12 test3 % openshift-goimports -m main I0213 22:54:50.716601 1806 imports.go:227] main.go updated (base) mspreitz@mjs12 test3 % cat main.go package main import ( "context" "flag" "net" // comment "os" "time" ) func main() { } (base) mspreitz@mjs12 test3 % openshift-goimports -m main I0213 22:54:58.500112 1822 imports.go:227] main.go updated (base) mspreitz@mjs12 test3 % cat main.go package main import ( "context" "flag" "net" "os" "time" // comment ) func main() { }
The text was updated successfully, but these errors were encountered:
make imports
@coreydaley
Sorry, something went wrong.
I will try to take a look at it later this week.
Thanks!
No branches or pull requests
Expected Behavior
Two or more invocations have the same effect as one.
Actual Behavior
Steps to Reproduce the Problem
Specifications
The text was updated successfully, but these errors were encountered: