1. node_modules/eslint 삭제.
터미널
npm uninstall eslint
2. package.json devDependencies의 eslint 버전을 아래와 같이 수정
...
"devDependencies": {
"eslint": "^5.16.0"
}
...
npm install
---출처
https://github.com/eslint/eslint/issues/11957
TypeError: this.cliEngine is not a constructor · Issue #11957 · eslint/eslint
Tell us about your environment **ESLint Version: v6.0.1 **Node Version: v10.13.0 **npm Version: v6.4.1 What parser (default, Babel-ESLint, etc.) are you using? Please show your full configuration: ...
github.com
https://tristan91.tistory.com/516
TypeError: this.cliEngine is not a constructor
webstorm에서 eslint 적용 후 TypeError: this.cliEngine is not a constructor 위와 같은 에러 발생 webstorm 버전을 2018.3.6 버전으로 업데이트하고, eslint 버전을 6.6에서 5.16.0으로 변경하라는 글이 있어서..
tristan91.tistory.com