我正在尝试调试为什么stylelint应用程序无法在我的PhpStorm IDE中找到我的配置文件。 Stylelint,一个基于JS的应用程序(nodeJS?)被执行,并且该过程以该错误结束:
stylelint._fullExplorer.load.then.then.config (K:\dev\npm packages\node_modules\stylelint\lib\getConfigForFile.js:47:15)
我怎么能在运行时以某种方式可视化该searchPath变量的值?
if (!config) {
const ending = searchPath ? ` for ${searchPath}` : "";
throw configurationError(`No configuration provided${ending}`);
是否有一种简单的方法来执行类似于控制台日志(searchPath)的操作,将该值保存在文件或其他内容中?
答案 0 :(得分:0)
看起来stylelint确实是一个Node应用程序。节点有console.log
,所以除非隐藏标准输出,否则确实有效。