]> source.dussan.org Git - gitea.git/commit
Fix `make fmt` and `make fmt-check` (#18633)
authorsilverwind <me@silverwind.io>
Sun, 6 Feb 2022 15:44:30 +0000 (07:44 -0800)
committerGitHub <noreply@github.com>
Sun, 6 Feb 2022 15:44:30 +0000 (16:44 +0100)
commit37ead26e36073342edd1c36fa7cd3503297d2ce9
treeedaa10c2490f4f48de30f280653fd941ddf9ad2f
parent7b6c1f809fb90aecc6643c75d6d0203947de8d04
Fix `make fmt` and `make fmt-check` (#18633)

* Run 'make fmt'

'make fmt' currently produces this change, I'm not sure how CI did not
fail on it, I made sure I have `mvdan.cc/gofumpt@latest`.

* Fix 'make fmt-check'

`make fmt-check` did not run all commands that `make fmt` did, resulting
in missed diffs. Fix that by just depending on the `fmt` target.

Includes: https://github.com/go-gitea/gitea/pull/18633

* Make gitea-fmt work with -l and -d and integrate gofumpt

This implements -l, -w and -d with gitea-fmt and merges gofumpt.

Signed-off-by: Andrew Thornton <art27@cantab.net>
* as per silverwind

Signed-off-by: Andrew Thornton <art27@cantab.net>
* Apply suggestions from code review

* use -l instead of -d for fmt-check

Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Andrew Thornton <art27@cantab.net>
Makefile
build/code-batch-process.go
build/codeformat/formatimports.go
services/mailer/mail_test.go