Intellij 에서 eslint 설정하기
IDE : Intellij Intellij 기준으로 설정하자면, 1. Intelli J Plugins에서 ESlint, Prettier을 설치한다. 2. Settings > Languages & Frameworks > javascript > Code Quality Tools > ESLint에서 아래와 같이 설정한다. 별도의 eslint file이 있을경우 수동 설정으로 파일을 연결하면 된다. - eslint package : eslint 가 설치된 경로 필자의 경우 node_modules\eslint - configuration file : 프로젝트 내 eslint file의 경로 eslint.json의 경로 - Run eslint --fix on save 체크 활성화 이렇게만 하면 파일마다 eslint..
2022.07.31