2026-01-29 14:46:31 +00:00
|
|
|
# core go lint
|
|
|
|
|
|
|
|
|
|
Run golangci-lint.
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
core go lint [flags]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Flags
|
|
|
|
|
|
|
|
|
|
| Flag | Description |
|
|
|
|
|
|------|-------------|
|
2026-01-29 16:10:23 +00:00
|
|
|
| `--fix` | Fix issues automatically |
|
2026-01-29 14:46:31 +00:00
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
core go lint # Check
|
|
|
|
|
core go lint --fix # Auto-fix
|
|
|
|
|
```
|