如何让 Prettier 插件在 PhpStorm 中工作?
How to make Prettier plugin work in PhpStorm?
我安装了 Prettier 插件,通过 npm 安装了 Prettier 到我的项目中,当我尝试使用它重新格式化某些东西时,它就像 Prettier 中存在错误一样。这是我得到的。
<...>node_modules\prettier\index.js:12947
} catch {
^
SyntaxError: Unexpected token {
at new Script (vm.js:51:7)
at createScript (vm.js:136:10)
at Object.runInThisContext (vm.js:197:10)
at Module._compile (module.js:613:28)
at Object.Module._extensions..js (module.js:660:10)
at Module.load (module.js:561:32)
at tryModuleLoad (module.js:501:12)
at Function.Module._load (module.js:493:3)
at Module.require (module.js:593:17)
at require (internal/module.js:11:18)
Process finished with exit code -1
有什么想法吗?
我的猜测是您 运行 不支持 optional catch binding 的旧版本 Node.js。在 设置中选择了什么 Node.js 版本 |语言与框架 | Node.js?
我安装了 Prettier 插件,通过 npm 安装了 Prettier 到我的项目中,当我尝试使用它重新格式化某些东西时,它就像 Prettier 中存在错误一样。这是我得到的。
<...>node_modules\prettier\index.js:12947
} catch {
^
SyntaxError: Unexpected token {
at new Script (vm.js:51:7)
at createScript (vm.js:136:10)
at Object.runInThisContext (vm.js:197:10)
at Module._compile (module.js:613:28)
at Object.Module._extensions..js (module.js:660:10)
at Module.load (module.js:561:32)
at tryModuleLoad (module.js:501:12)
at Function.Module._load (module.js:493:3)
at Module.require (module.js:593:17)
at require (internal/module.js:11:18)
Process finished with exit code -1
有什么想法吗?
我的猜测是您 运行 不支持 optional catch binding 的旧版本 Node.js。在 设置中选择了什么 Node.js 版本 |语言与框架 | Node.js?