Skip to content
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

proposal: Remove redundant package aliases from import blocks #296

Closed
wants to merge 1 commit into from

Commits on Feb 14, 2024

  1. Remove redundant package aliases from import blocks

    I noticed that
    
    ```go
    package main
    
    import (
    	foo "gofumpt-ex/foo"
    )
    
    func main() {
    	foo.Foo("goodbye, world!")
    }
    ```
    
    wasn't being simplified to
    
    ```go
    package main
    
    import (
    	"gofumpt-ex/foo"
    )
    
    func main() {
    	foo.Foo("goodbye, world!")
    }
    ```
    
    when the package name of "gofumpt-ex/foo" is "foo". This commit adds
    handling for this.
    adamroyjones committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    f7de7e2 View commit details
    Browse the repository at this point in the history