diff options
| author | Will Hawkins <[email protected]> | 2023-05-19 13:01:18 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2023-05-19 13:01:18 -0400 |
| commit | cc93fd30fcfcb546131b9448a5637dead3e88953 (patch) | |
| tree | d6d4543a7e528eeb5ab34f7dda720fa61f2b0619 /ide | |
| parent | 6042a345251a100c70b787251d1c6c8438189a1b (diff) | |
Add VSCode Configuration Information
Using `gofumpt` via `gopls` makes it easier to maintain our
100-character-per-line limit. A `settings.json` file makes it easier to
configure and instructions in the `README.md` help, too.
Diffstat (limited to 'ide')
| -rw-r--r-- | ide/settings.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ide/settings.json b/ide/settings.json new file mode 100644 index 0000000..94b335f --- /dev/null +++ b/ide/settings.json @@ -0,0 +1,6 @@ +{ + "gopls": { + "formatting.gofumpt": true + }, + "go.toolsEnvVars": {"GOFUMPT_SPLIT_LONG_LINES":"on"} +}
\ No newline at end of file |
