保存js文件时,可以将漂亮的插件集成到Web IDE中吗?

时间:2018-10-22 11:09:42

标签: sap-web-ide

到目前为止,我想在WebIDE中配置Prettier,但没有成功。

在我的package.json文件中,我具有以下设置:

"scripts": {
    "format": "prettier --write \"webapp/**/*.{js,css,json}\""
},
"devDependencies": {
  "prettier": "^1.14.3",
  "eslint": "^5.7.0",
  "eslint-plugin-prettier": "^3.0.0",
  "eslint-config-prettier": "^3.1.0" //Here I get ESLint error cannot find module
}

然后,在我的.eslintrc.json文件中:

"extends": ["eslint:recommended", "prettier"]

这不是真正的工作,我的目标是在保存文件时根据Prettier进行格式化(类似于Web IDE代码编辑器设置中的“美化代码”选项,该选项现已关闭)。

我尝试清理npm文件夹并重新构建,但是没有任何反应。

0 个答案:

没有答案