EnvCheck looks for a .env file via envfile.Find and warns when permissions look too permissive.
| 84 | // EnvCheck looks for a .env file via envfile.Find and warns when permissions |
| 85 | // look too permissive. |
| 86 | type EnvCheck struct { |
| 87 | Custom string |
| 88 | } |
| 89 | |
| 90 | func (c EnvCheck) Name() string { return "Environment File Check" } |
| 91 | func (c EnvCheck) Run(_ context.Context, r Reporter) Result { |
nothing calls this directly
no outgoing calls
no test coverage detected