작성
·
4.4K
0
무엇을 고쳐야할지 모르겠어요ㅠ
❯ npm run lint
> front@1.0.0 lint /Users/davidhong/Documents/001_Study/300_vue_inflearn/front
> eslint **/*
Oops! Something went wrong! :(
ESLint: 6.3.0.
No files matching the pattern "node_modules/@babel" were found.
Please check for typing mistakes in the pattern.
npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! front@1.0.0 lint: `eslint **/*`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the front@1.0.0 lint script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/davidhong/.npm/_logs/2019-09-08T07_14_29_493Z-debug.log
답변 19
9
저는 package.json 파일에서 lint 스크립트 수정해서 해결했습니다.
혹시 도움이 되실까해서 남깁니다~
{
...
"scripts": {
"dev": "nuxt",
"lint": "eslint --ext .js,.vue ."
},
...
"devDependencies": {
"eslint": "^6.6.0",
"eslint-plugin-vue": "^6.0.0"
},
"dependencies": {
"@nuxtjs/axios": "^5.8.0",
"@nuxtjs/vuetify": "^1.9.0",
"nuxt": "^2.10.2",
"vue": "^2.6.10",
"vuetify": "^2.1.7"
}
}
1
1
0
0
0
0
0
0
0
0
저도 동일한 오류가 뜨네요. 조현형님 코드 클론해도 같은 오류 뜨고요. 희안하네요.. 노드 모듈도 다시 설치해보고 @babel 설치도 확인했습니다. vscode의 문제일수도 있을까요
0
0
0
0
0
0
0
0