ssgf_utils/README.md
yuguojian 45545e6933 init
2025-05-12 17:47:28 +08:00

18 lines
347 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## window开发者执行
```bash
git config --global core.autocrlf true # 提交时转 CRLF 为 LF检出时转 LF 为 CRLF
```
## mac开发者执行
```bash
git config --global core.autocrlf input # 提交时转 CRLF 为 LF检出时不转换
```
## 格式化
```bash
gofumpt -l -w .
```
```bash
go install mvdan.cc/gofumpt@latest
```