版本号
ESLint Version: 4.18.2
Node Version: 8.93
npm Version: 5.5.1
package.json部分
scripts": {
"dev": "webpack-dev-server --open --history-api-fallback",
"build": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **/*.js",
"lint-html": "eslint **/*.js -f html -o ./reports/lint-results.html",
"lint-fix": "eslint --fix **/*.js"
}
报错
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! react-blog@1.0.0 lint: `eslint **/*.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the react-blog@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! C:\Users\yanyue\AppData\Roaming\npm-cache\_logs\2018-04-03T09_10_39_948Z-debug.log
debug.log
0 info it worked if it ends with ok
1 verbose cli [ 'D:\\Alike\\Environment\\nodejs\\node.exe',
1 verbose cli 'D:\\Alike\\Environment\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'run',
1 verbose cli 'lint',
1 verbose cli '--fix' ]
2 info using npm@5.5.1
3 info using node@v8.9.3
4 verbose run-script [ 'prelint', 'lint', 'postlint' ]
5 info lifecycle react-blog@1.0.0~prelint: react-blog@1.0.0
6 info lifecycle react-blog@1.0.0~lint: react-blog@1.0.0
7 verbose lifecycle react-blog@1.0.0~lint: unsafe-perm in lifecycle true
8 verbose lifecycle react-blog@1.0.0~lint: PATH: D:\Alike\Environment\nodejs\node_modules\npm\bin\node-gyp-bin;e:\Front-end\react-blog\node_modules\.bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Git\cmd;D:\Alike\TortoiseGit\bin;D:\Alike\Environment\java-jdk-1.70\bin;D:\Alike\Environment\nodejs\;C:\Program Files\TortoiseSVN\bin;D:\Alike\A-PCMaster\Git LFS\Git LFS;D:\Alike\pandoc\;C:\Users\yanyue\AppData\Roaming\npm;C:\Program Files (x86)\Microsoft VS Code\bin
9 verbose lifecycle react-blog@1.0.0~lint: CWD: e:\Front-end\react-blog
10 silly lifecycle react-blog@1.0.0~lint: Args: [ '/d /s /c', 'eslint **/*.js' ]
11 silly lifecycle react-blog@1.0.0~lint: Returned: code: 1 signal: null
12 info lifecycle react-blog@1.0.0~lint: Failed to exec lint script
13 verbose stack Error: react-blog@1.0.0 lint: `eslint **/*.js`
13 verbose stack Exit status 1
13 verbose stack at EventEmitter.<anonymous> (D:\Alike\Environment\nodejs\node_modules\npm\node_modules\npm-lifecycle\index.js:280:16)
13 verbose stack at emitTwo (events.js:126:13)
13 verbose stack at EventEmitter.emit (events.js:214:7)
13 verbose stack at ChildProcess.<anonymous> (D:\Alike\Environment\nodejs\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14)
13 verbose stack at emitTwo (events.js:126:13)
13 verbose stack at ChildProcess.emit (events.js:214:7)
13 verbose stack at maybeClose (internal/child_process.js:925:16)
13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)
14 verbose pkgid react-blog@1.0.0
15 verbose cwd e:\Front-end\react-blog
16 verbose Windows_NT 6.1.7601
17 verbose argv "D:\\Alike\\Environment\\nodejs\\node.exe" "D:\\Alike\\Environment\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "run" "lint" "--fix"
18 verbose node v8.9.3
19 verbose npm v5.5.1
20 error code ELIFECYCLE
21 error errno 1
22 error react-blog@1.0.0 lint: `eslint **/*.js`
22 error Exit status 1
23 error Failed at the react-blog@1.0.0 lint script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]
大家帮忙看一下,这个问题我该怎么解决,使用eslint总是修正不了代码。
贴完整的报错信息。我觉得并不是报错。
eslint 并不能修正所有代码,查看 eslint 文档就可以看到了,
--fix
只能修正那些 fixable 的规则。当 eslint 检测到错误或者警告时,会返回非 0 的代码,此时就会出现
npm ERR!
所以看到 npm ERR 不要大惊小怪,不是程序运行错误,而是你的代码有问题。
这不是报错。