코딩테스트 시 IDE 사용이나 자동완성 기능을 제한하는 기업들이 있다고 해서 나도 연습할 때 설정을 끄고 연습을 진행할 것 입니다. 그러면서 생긴 고민이 코딩테스트 풀이들을 담은 디렉토리 즉, 코딩테스트 프로젝트 내에서만 자동완성을 끄고 싶어서 검색을 해보니... 역시 같은 고민을 한 많은 분들이 답을 제시하고 계셨다...
(1) 프로젝트 최상위 디렉토리에 .vscode 디렉토리 생성
(2) settings.json 파일 생성
(3) 설정에 필요한 key, value 작성
{
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"editor.suggest.showConstants": false,
"editor.suggest.showConstructors": false,
"editor.suggest.showCustomcolors": false,
"editor.suggest.showDeprecated": false,
"editor.suggest.showEnumMembers": false,
"editor.suggest.showEnums": false,
"editor.suggest.showEvents": false,
"editor.suggest.showFields": false,
"editor.suggest.showFiles": false,
"editor.suggest.showFolders": false,
"editor.suggest.showFunctions": false,
"editor.suggest.showInterfaces": false,
"editor.suggest.showIssues": false,
"editor.suggest.showKeywords": false,
"editor.suggest.showMethods": false,
"editor.suggest.showModules": false,
"editor.suggest.showOperators": false,
"editor.suggest.showProperties": false,
"editor.suggest.showReferences": false,
"editor.suggest.showSnippets": false,
"editor.suggest.showStructs": false,
"editor.suggest.showTypeParameters": false,
"editor.suggest.showUnits": false,
"editor.suggest.showUsers": false,
"editor.suggest.showValues": false,
"editor.suggest.showVariables": false,
"editor.suggest.showWords": false,
"editor.suggest.showClasses": false,
"editor.suggest.showColors": false
}