We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
因为有自定义eslint rule的原因,在命令行执行 eslint --ext .js,.jsx,.ts,.tsx src 命令后,没有错误。
eslint --ext .js,.jsx,.ts,.tsx src
在命令行执行 taro doctor,会有很多错误信息,被我忽略的rule任然报错了
taro doctor
https://github.com/NervJS/taro-doctor/blob/eed156a8a0ef54fad62ea60fdb94d8acdb2ac168/index.js#L132C29-L132C38
我调试发现这一行 glob.sync 调用,把路径中 \ 替换成 / 就能找到文件了
glob.sync
\
/
可能是 glob 不识别windows路径分隔符的原因
The text was updated successfully, but these errors were encountered:
关联 issue : NervJS/taro#16025
Sorry, something went wrong.
No branches or pull requests
因为有自定义eslint rule的原因,在命令行执行
eslint --ext .js,.jsx,.ts,.tsx src
命令后,没有错误。在命令行执行
taro doctor
,会有很多错误信息,被我忽略的rule任然报错了https://github.com/NervJS/taro-doctor/blob/eed156a8a0ef54fad62ea60fdb94d8acdb2ac168/index.js#L132C29-L132C38
我调试发现这一行
glob.sync
调用,把路径中\
替换成/
就能找到文件了可能是 glob 不识别windows路径分隔符的原因
The text was updated successfully, but these errors were encountered: