Вебинар: Go vet не поможет... Как сделать свой анализатор кода для Go? - 28.09
V6110. Using an environment variable could be unsafe or unreliable. Consider using trusted system property instead
V6110 Using the 'PWD' environment variable could be unsafe or unreliable. Consider using trusted system property 'user.dir' instead. TerminalUtils.java 27
static final boolean IS_CYGWIN = OS.WINDOWS.isCurrent()
&& System.getenv("PWD") != null
&& System.getenv("PWD").startsWith("/");