Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

prettier-plugin-jsp

IlanFrumer733MIT1.0.13

Format JSP using Prettier

prettier, jsp

readme

prettier-plugin-jsp

Format JSP using Prettier

.prettierrc

{
  "plugins": ["prettier-plugin-jsp"]
}

VSCode

  • Install Java Server Pages (JSP) extension

  • Edit settings.json:

    {
      "editor.formatOnSave": true,
      "prettier.enable": true,
      "files.associations": {
        "*.jsp": "jsp",
        "*.tag": "jsp"
      },
      "[jsp]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      }
    }