chore: add roadmap

main
sudo pacman -Syu 2022-11-27 01:23:06 +07:00
parent 7bb5fc7d63
commit 5a62dae185
No known key found for this signature in database
GPG Key ID: D6CB5C6C567C47B0
2 changed files with 10 additions and 1 deletions

View File

@ -2,6 +2,12 @@
goimports with my opinionated preferences.
## Roadmap
- [ ] Diff with color
- [ ] Add profiling
- [ ] Use profiling to improve performance
## Thanks
- [goimports](https://pkg.go.dev/golang.org/x/tools/cmd/goimports)

View File

@ -189,7 +189,10 @@ func (ft *Formatter) formatImports(
}
ft.mustLogImportSpecs("formatImports: importSpecs", importSpecs)
groupedImportSpecs, err := ft.groupImportSpecs(importSpecs, moduleName)
groupedImportSpecs, err := ft.groupImportSpecs(
importSpecs,
moduleName,
)
if err != nil {
return nil, err
}