VScode에서 gopls를 사용하면 import이 자동으로 삭제됩니다.
5373 단어 Gogoplslanguageservertech
컨디션
문제.
저장할 때 임의로 import을 정리합니다
이후 설치된 부분이 삭제되어 매우 번거롭다
원인을 구분하다
여러모로 조사한 결과 Language 서버를 사용할 때 이러한 문제가 발생할 수 있음을 알 수 있었습니다.
그래서 범인은 아마 gopls...?이런 결론을 얻었다
Issue
역시 같은 문제를 안고 있는 사람이 있어요.
However, when using gopls the following behavior happens:
해결하다
이러한 Issue의 해결 방법에는
"source.organizeImports": false
이 있습니다.설정의 해당 부분을 가짜로 설정하면 의도적인 동작이 됩니다.
결국 내 세팅스는다음은 json
{
"go.formatTool": "gofmt",
"go.lintOnSave": "off",
"go.lintTool": "golangci-lint",
"go.useLanguageServer": true,
"[go]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
// Optional: Disable snippets, as they conflict with completion ranking.
"editor.snippetSuggestions": "none"
},
"[go.mod]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"go.languageServerExperimentalFeatures": {
"format": false,
"autoComplete": true
},
"gopls": {
// Add parameter placeholders when completing a function.
"usePlaceholders": true,
// If true, enable additional analyses with staticcheck.
// Warning: This will significantly increase memory usage.
"staticcheck": false
}
}
이상
Reference
이 문제에 관하여(VScode에서 gopls를 사용하면 import이 자동으로 삭제됩니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/minato86/articles/83d44fe9f4532617f3c0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)