요우님의 이력서를 export 해서 index.html을 만드려고 하는데 작동이 되지 않는다
뭐가 문제 일까
Oops! Something went wrong! :( ESLint: 6.8.0. No files matching the pattern "'component/**/*'" were found. Please check for typing mistakes in the pattern.
"lint": "eslint 'component/**/*' 'pages/**/*' 'payload/**/*' '*.ts' --fix",
를 아래로 바꾸면 작동하게 된다.
"lint": "eslint --fix --ext component/**/*,pages/**/*,payload/**/*,*.ts",
아 되는게 아니었네...
아니면
eslint를 공부해야겠다...
'검색용 개발 블로그' 카테고리의 다른 글
spring boot > run > main.java 로 설정하기 (0) | 2021.09.16 |
---|---|
the jar file has no source attachment (0) | 2021.09.14 |
git repository 이름 변경 후 올리기 (0) | 2021.09.11 |
okhttp (0) | 2021.09.10 |
[javascirpt] object ==, === 비교 (0) | 2021.09.07 |