개발 지식
EsLint 관련 에러가 나올때 해결법 case-1
CODE_PLAN
2024. 1. 14. 01:03
1. VSCode 확장프로그램(Extensions)에서 'ESLint'를 검색합니다
2. 명령어 팔레트(shift + alt + P)를 열어서 setting.json에 들어갑니다.
3. setting.json에 아래코드를 추가하고 저장합니다.
"editor.codeActionsOnSave": {
"source.fixAll": true,
},
"editor.formatOnSave":true,
참고> https://ek12mv2.tistory.com/223
VSCode ESLint 자동으로 적용하기
[참고자료] [VSCode] ESLINT 자동 적용하기 How to apply eslint automatically blog.whitekiwi.link eslint: error Parsing error: The keyword 'const' is reserved I am getting this error from ESLint: error Parsing error: The keyword 'const' is reserved
ek12mv2.tistory.com