Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 520 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 520 Bytes

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"
      }
    }