pulumi/pkg/resource/deploy
Abhinav Gupta 7aa5b77a0c
all: Reformat with gofumpt
Per team discussion, switching to gofumpt.

[gofumpt][1] is an alternative, stricter alternative to gofmt.
It addresses other stylistic concerns that gofmt doesn't yet cover.

  [1]: https://github.com/mvdan/gofumpt

See the full list of [Added rules][2], but it includes:

- Dropping empty lines around function bodies
- Dropping unnecessary variable grouping when there's only one variable
- Ensuring an empty line between multi-line functions
- simplification (`-s` in gofmt) is always enabled
- Ensuring multi-line function signatures end with
  `) {` on a separate line.

  [2]: https://github.com/mvdan/gofumpt#Added-rules

gofumpt is stricter, but there's no lock-in.
All gofumpt output is valid gofmt output,
so if we decide we don't like it, it's easy to switch back
without any code changes.

gofumpt support is built into the tooling we use for development
so this won't change development workflows.

- golangci-lint includes a gofumpt check (enabled in this PR)
- gopls, the LSP for Go, includes a gofumpt option
  (see [installation instrutions][3])

  [3]: https://github.com/mvdan/gofumpt#installation

This change was generated by running:

```bash
gofumpt -w $(rg --files -g '*.go' | rg -v testdata | rg -v compilation_error)
```

The following files were manually tweaked afterwards:

- pkg/cmd/pulumi/stack_change_secrets_provider.go:
  one of the lines overflowed and had comments in an inconvenient place
- pkg/cmd/pulumi/destroy.go:
  `var x T = y` where `T` wasn't necessary
- pkg/cmd/pulumi/policy_new.go:
  long line because of error message
- pkg/backend/snapshot_test.go:
  long line trying to assign three variables in the same assignment

I have included mention of gofumpt in the CONTRIBUTING.md.
2023-03-03 09:00:24 -08:00
..
deploytest all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
providers all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
builtins.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
deployment.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
deployment_executor.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
deployment_executor_test.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
deployment_test.go Remove source_fixed 2022-11-08 15:55:45 +00:00
doc.go Document Go packages (#6009) 2021-01-11 11:07:59 -07:00
import.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
manifest.go Split Manifest type to it's own file (#8712) 2022-01-10 12:25:24 +00:00
plan.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
snapshot.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
snapshot_test.go test # This is a combination of 3 commits. 2022-10-25 16:54:58 -07:00
source.go Monitor.Invoke and Provider.Invoke take different arguments (#9323) 2022-04-14 10:59:46 +01:00
source_error.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
source_eval.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
source_eval_test.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
source_null.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
source_query.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
source_query_test.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
state_builder.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
state_builder_test.go Non-mutating snapshot normalization (#10128) 2022-07-18 14:04:19 -04:00
step.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
step_executor.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
step_generator.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
step_generator_test.go all: Reformat with gofumpt 2023-03-03 09:00:24 -08:00
target.go Add getOrganization to nodejs and python (#10504) 2022-08-31 10:33:29 +01:00