-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemo.md
More file actions
35 lines (26 loc) · 1.59 KB
/
Copy pathmemo.md
File metadata and controls
35 lines (26 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
date: 2025-08-14 15:17
description: Go Language
author: Tadahiro Ishisaka
---
# Go言語のメモ
## ツール系
* [Goのバージョン管理](https://zenn.dev/itoo/articles/output_go_version)
Goのバージョンアップ方法と複数バージョンの管理について。
* [gup: go installしたバイナリの一括アップデートコマンド(仕様と今後)](https://zenn.dev/nao1215/articles/aef3fe318848d6)
Goのバイナリを一括でアップデートするためのコマンド。
* [Staticcheck: go vetコマンドを補完するGo向けリンタの導入](https://zenn.dev/erueru_tech/articles/fd2fa2c3007fe2)
GoのリンタのStaticcheckの導入方法。
* [Introduction \| golangci\-lint](https://golangci-lint.run/)
Goのリンタのgolangci-lintの導入方法。
* [gofumpt command \- github\.com/awoodbeck/gofumpt \- Go Packages](https://pkg.go.dev/github.com/awoodbeck/gofumpt#section-readme)
Goのフォーマッタのgofumptの導入方法。
* [How to manage tool dependencies in Go 1\.24\+ – Alex Edwards](https://www.alexedwards.net/blog/how-to-manage-tool-dependencies-in-go-1.24-plus)
Go 1.24以降のツール依存関係の管理方法。
## Go Workspace関連
* [なぜgo\.workはリポジトリにコミットすべきではないのか \#Git \- Qiita](https://qiita.com/h-masano/items/bf7bdfba7c4e8f6b28c4)
## コーディング標準
* [Go Style \| styleguide](https://google.github.io/styleguide/go/)
## ライブラリ
### エラーハンドリング
- [go\-errors/errors: errors with stacktraces for go](https://github.com/go-errors/errors)