Skip to content

Commit

Permalink
Remove gofumpt's -lang flag
Browse files Browse the repository at this point in the history
It turns out we no longer need this. This flag is also causing some
issues with the latest version of gofumpt.
  • Loading branch information
EdSchouten committed Aug 19, 2024
1 parent d07a29c commit 2e393d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
{
"name": "Gofmt",
"run": "bazel run @cc_mvdan_gofumpt//:gofumpt -- -lang 1.19 -w -extra $(pwd)"
"run": "bazel run @cc_mvdan_gofumpt//:gofumpt -- -w -extra $(pwd)"
},
{
"name": "Clang format",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
{
"name": "Gofmt",
"run": "bazel run @cc_mvdan_gofumpt//:gofumpt -- -lang 1.19 -w -extra $(pwd)"
"run": "bazel run @cc_mvdan_gofumpt//:gofumpt -- -w -extra $(pwd)"
},
{
"name": "Clang format",
Expand Down
2 changes: 1 addition & 1 deletion tools/github_workflows/workflows_template.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
},
{
name: 'Gofmt',
run: 'bazel run @cc_mvdan_gofumpt//:gofumpt -- -lang 1.19 -w -extra $(pwd)',
run: 'bazel run @cc_mvdan_gofumpt//:gofumpt -- -w -extra $(pwd)',
},
{
name: 'Clang format',
Expand Down

0 comments on commit 2e393d5

Please sign in to comment.