23 lines
209 B
Markdown
23 lines
209 B
Markdown
|
|
# Go Lint Examples
|
||
|
|
|
||
|
|
```bash
|
||
|
|
# Check
|
||
|
|
core go lint
|
||
|
|
|
||
|
|
# Auto-fix
|
||
|
|
core go lint --fix
|
||
|
|
```
|
||
|
|
|
||
|
|
## Configuration
|
||
|
|
|
||
|
|
`.golangci.yml`:
|
||
|
|
|
||
|
|
```yaml
|
||
|
|
linters:
|
||
|
|
enable:
|
||
|
|
- gofmt
|
||
|
|
- govet
|
||
|
|
- errcheck
|
||
|
|
- staticcheck
|
||
|
|
```
|