19.09.08 16:15 작성
·
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
2019. 09. 08. 16:48
노드 모듈 지웠다가 다시 설치해보세요. 설치에서 뭔가 엉킨 것 같습니다. 일단 제가 태환님 깃헙 소스로 해본 것은 잘 됩니다.
0
0
0
0
0
0
0
0
2019. 09. 08. 16:43
ㅠㅠ 너무 잘(?) 있어요ㅠㅠ
ㅎㅎ 우선 lint때문에 진도 못나가는건 아니니 진도나가보고.... 다른 개발환경에서 다시 문제 발생하는지 볼께요
0
0
0
2019. 09. 08. 16:35
https://github.com/david-th-hong/vueinflearn/tree/master/front
혹시몰라 git url 첨부드립니다
0
0
0
2019. 09. 08. 16:23
네넵 ❯ npm i -D eslint eslint-plugin-vue 로 해당 패키지 설치하고 진행했습니다;; 깃헙 한번 보고올께요
0