mirror of
https://github.com/zr-hebo/sniffer-agent.git
synced 2025-08-10 20:21:19 +08:00
4 lines
80 B
Bash
4 lines
80 B
Bash
#!/bin/bash
|
|
|
|
for i in *.go; do golint $i | grep -q . || echo $i; done > .linted
|