2️⃣ 개발 지식 B+/프로젝트 세팅2 prettier, eslint 적용하는 법 preference > settings > Editor: Format On Save (User, Workspace 모두) 체크하고 저장!!!!!!해야해!!!! settings.json // 아래는 내가 추가한거 "eslint.workingDirectories": [ // 보통 이렇게 디렉토리 설정을 안해서 자동고침이 안된다 { "mode": "auto" } ], "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, // don't format on save "editor.formatOnSave": true, "eslint.validate": [ "javascript" ], "files.autoSave": ".. 2021. 2. 24. 우분투 환경에서 git 시작하기 우분투를 몇달 간 사용해보면서 느낀 점은 모든 작업을 CLI (Command Line Interface) 로 진행한다는 것이다. 그래서 git bash 와 같은 별도의 프로그램 설치 필요 없다. 한번 CLI 방법을 함께 공부해보자. with 참고자료 기본 작업 패키지 설치$ sudo apt-get install git-core사용자 정보 추가$ git config --global user.name "이름"$ git config --global user.email "이메일 주소"컬러 설정$ git config --global color.ui "auto" Git 저장소 생성 윈도우에서는 이동하기 편한 C:/ 안에다가 했는데, 우분투는 터미널 시작 경로가 home/username 임을 인지하고 시작하였다. .. 2020. 12. 23. 이전 1 다음