How to disable Golang unused import error

前端 未结 8 2022
我寻月下人不归
我寻月下人不归 2020-12-05 03:30

By default, Go treats unused import as error, forcing you to delete the import. I want to know if there exists some hope to change to this behavior, e.g. reducing it to warn

相关标签:
8条回答
  • 2020-12-05 04:06

    The var _ = fmt.Printf trick is helpful here.

    0 讨论(0)
  • 2020-12-05 04:11

    Adding an underscore (_) before a package name will ignore the unused import error.

    Here is an example of how you could use it:

    import (
        "log"
        "database/sql"
    
        _ "github.com/go-sql-driver/mysql"
    )
    

    To import a package solely for its side-effects (initialization), use the blank identifier as explicit package name.

    View more at https://golang.org/ref/spec#Import_declarations

    0 讨论(0)
  • 2020-12-05 04:16

    I have the same problem. I understand the reasoning for why they implemented the language to disallow unused imports and variables, but I personally find this feature annoying when writing my code. To get around this, I changed around my compiler to allow optional flags for allowing unused variables and imports in my code.

    If you are interested, you can see this at https://github.com/dtnewman/modified_golang_compiler.

    Now, I can simply run code with a command such as go run -gcflags '-unused_pkgs' test.go and it will not throw these "unused import" errors. If I leave out these flags, then it returns to the default of not allowing unused imports.

    Doing this only required a few simple changes. Go purists will probably not be happy with these changes since there is good reason to not allow unused variables/imports, but I personally agree with you that this issue makes it much less enjoyable to code in Go which is why I made these changes to my compiler.

    0 讨论(0)
  • 2020-12-05 04:18

    If you are using the fmt package for general printing to console while you develop and test then you may find a better solution in the log package.

    0 讨论(0)
  • 2020-12-05 04:21

    Use goimports. It's basically a fork of gofmt, written by Brad Fitzpatrick and now included in the go tools packages. You can configure your editor to run it whenever you save a file. You'll never have to worry about this problem again.

    0 讨论(0)
  • 2020-12-05 04:21

    A lot of people have already commented with valid justification and I also acknowledge the original author's intention. However, Rob Pike mentioned in different forums that Go is the outcome of simplification of the processes that a few other mainstream programming languages either lack or not easy to achieve. It's Go's language semantics as well as to make the compilation faster, there are a lot of things that are adopted which initially seems inefficient.

    To make it short, unused imports are considered as errors in Go as it blots the program and slows down the compilation. Using import for side effect (_) is a workaround, however, I find this confusing at times when there is a mix of valid imports with side effects along with side effects imported purely for the purpose of debugging/testing especially when the code base is large and there is a chance to forget and not delete unintentionally which may confuse other engineers/reviewers later. I used to comment out the unused ones, however, popular IDEs such as VS code and Goland can use goimports easily which does the insertion and deletion of the imports pretty well. Please refer to the link for more info, https://golang.org/doc/effective_go.html#blank_import

    0 讨论(0)
提交回复
热议问题