Intellij 에서 eslint 설정하기

2022. 7. 31. 15:43기타

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 설정이 될 것이다.

그런데 필자의 경우 모든 eslint 에러로 "linebreak-style" 에러가 발생하였다. 

이 경우 eslint.json 파일에 "linebreak-style": 0, 이 속성을 넣어주니 에러가 사라졌다.