mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-17 16:26:34 +00: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
|