diff options
author | David Houston <houstdav000@gmail.com> | 2021-11-09 02:53:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 16:53:44 +0900 |
commit | 8b3b16d71c4c683da6f3ca39662d207a3e894901 (patch) | |
tree | d221ad3ec518fcfff3c33bfe33e5e9ac5621271a /supported-tools.md | |
parent | f37cd1fd4fc17173a98649d8a0b2f37ce7ba61cf (diff) | |
download | ale-8b3b16d71c4c683da6f3ca39662d207a3e894901.zip |
Implement gofumpt Fixer (#3968)
* Implement gofumpt Fixer
Add an implementation with test and documentation for the gofumpt go
code formatter, a stricter formatter than your standard "go fmt".
Signed-off-by: David Houston <houstdav000@gmail.com>
* Add gofumpt to ale.txt TOC
Forgot to add gofumpt to the ALE vim help Table of Contents, so do so.
Signed-off-by: David Houston <houstdav000@gmail.com>
* Fix Test Setup Method Capitalization
I had put "Setup" instead of "SetUp" for "ale#assert#SetUpFixerTests".
Fix such.
Signed-off-by: David Houston <houstdav000@gmail.com>
* Fix typos
Add a missing space, remove an extra bracket by actually running tests
locally first. Would've been smart to do that from the beginning...
Signed-off-by: David Houston <houstdav000@gmail.com>
Diffstat (limited to 'supported-tools.md')
-rw-r--r-- | supported-tools.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/supported-tools.md b/supported-tools.md index b2c0ec48..ab02b006 100644 --- a/supported-tools.md +++ b/supported-tools.md @@ -191,6 +191,7 @@ formatting. * [go mod](https://golang.org/cmd/go/) :warning: :floppy_disk: * [go vet](https://golang.org/cmd/vet/) :floppy_disk: * [gofmt](https://golang.org/cmd/gofmt/) + * [gofumpt](https://github.com/mvdan/gofumpt) * [goimports](https://godoc.org/golang.org/x/tools/cmd/goimports) :warning: * [golangci-lint](https://github.com/golangci/golangci-lint) :warning: :floppy_disk: * [golangserver](https://github.com/sourcegraph/go-langserver) :warning: |