diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index da1ffa5b7..9d789cd78 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -2,7 +2,7 @@ - **Please check if the PR fulfills these requirements** -* [ ] Cheatsheets are up-to-date (run `go run scripts/cheatsheet/main.go generate`) +* [ ] Cheatsheets are up-to-date (run `go generate ./...`) * [ ] Code has been formatted (see [here](https://github.com/jesseduffield/lazygit/blob/master/CONTRIBUTING.md#code-formatting)) * [ ] Tests have been added/updated (see [here](https://github.com/jesseduffield/lazygit/blob/master/pkg/integration/README.md) for the integration test guide) * [ ] Text is internationalised (see [here](https://github.com/jesseduffield/lazygit/blob/master/CONTRIBUTING.md#internationalisation)) diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..219c87aea --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "gopls": { + "formatting.gofumpt": true, + }, +}