Eslint "No files matching the pattern "lint" 被发现。请检查模式中是否存在输入错误。"错误
Eslint "No files matching the pattern "lint" were found. Please check for typing mistakes in the pattern." error
最近我将我的项目 eslint 包更新为 "eslint": "^6.8.0"
。这是我看到错误的时候
Oops! Something went wrong! :(
ESLint: 6.8.0.
No files matching the pattern "lint" were found.
Please check for typing mistakes in the pattern.
我的包 JSON 脚本如下所示:
"lint": "eslint lint --color src -f ./node_modules/eslint-friendly-formatter src/ tests/unit/__mocks__/ --ext .json --ext .js -c .eslintrc.js",
我不确定这个脚本有什么问题,它在 eslint 的旧版本上运行良好。
在论坛中寻找解决方案时,建议添加一个标志
--no-error-on-unmatched-pattern
。我不确定为什么需要将此标志添加到我的脚本中。
任何帮助表示赞赏!
我想人们在版本 5 上也遇到过这个问题。请参阅此问题
https://github.com/eslint/eslint/issues/10587
添加--no-error-on-unmatched-pattern
忽略此类问题。
最近我将我的项目 eslint 包更新为 "eslint": "^6.8.0"
。这是我看到错误的时候
Oops! Something went wrong! :(
ESLint: 6.8.0.
No files matching the pattern "lint" were found.
Please check for typing mistakes in the pattern.
我的包 JSON 脚本如下所示:
"lint": "eslint lint --color src -f ./node_modules/eslint-friendly-formatter src/ tests/unit/__mocks__/ --ext .json --ext .js -c .eslintrc.js",
我不确定这个脚本有什么问题,它在 eslint 的旧版本上运行良好。
在论坛中寻找解决方案时,建议添加一个标志
--no-error-on-unmatched-pattern
。我不确定为什么需要将此标志添加到我的脚本中。
任何帮助表示赞赏!
我想人们在版本 5 上也遇到过这个问题。请参阅此问题
https://github.com/eslint/eslint/issues/10587
添加--no-error-on-unmatched-pattern
忽略此类问题。