为什么我的 eslint automation return 这个错误?

Why does my eslint automation return this error?

我已经设置了 eslint 来检查我的两个 js 文件。当我 运行 eslint ./file1.js ./file2.js eslint 工作正常但是当我尝试通过将它添加到我的 package.json 文件来自动化它时,如下所示:

  "scripts": {
    "start": "node file1.js"
    "pretest": "eslint .\file1.js .\file2.js"

  },

并尝试通过在我的 CLI 中使用 'npm run pretest' 来 运行 它 returns 这个错误,而不是像我键入 eslint 时那样通常 运行ning直接在我的 CLI 中命令:

npm ERR! code EJSONPARSE
npm ERR! file C:\filepath\package.json
npm ERR! JSON.parse Failed to parse json
npm ERR! JSON.parse Unexpected string in JSON at position 148 while parsing '{
npm ERR! JSON.parse   "name": "progproj",
npm ERR! JSON.parse   "ve'
npm ERR! JSON.parse Failed to parse package.json data.
npm ERR! JSON.parse package.json must be actual JSON, not just JavaScript.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\filepath\AppData\Roaming\npm-cache\_logs21-01-18T00_05_33_552Z-debug.log


您需要小心 package.json 中的 windows 个路径文件。你可以用“whatever/andever”

那么您的脚本可能如下所示:

"scripts": {
  "start": "node file1.js",
  "pretest": "eslint \".\file1.js\" \".\file2.js\""

},

或者当它们指向您可以执行的项目文件夹时:

"scripts": {
    "start": "node file1.js",
    "pretest": "eslint file1.js file2.js"

  },