An open API service indexing awesome lists of open source software.

https://github.com/ilanfrumer/prettier-plugin-jsp

Format JSP using Prettier
https://github.com/ilanfrumer/prettier-plugin-jsp

Last synced: 10 months ago
JSON representation

Format JSP using Prettier

Awesome Lists containing this project

README

          

# prettier-plugin-jsp

Format JSP using Prettier

## .prettierrc

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

## VSCode

- Install [Java Server Pages (JSP) extension](https://marketplace.visualstudio.com/items?itemName=pthorsson.vscode-jsp)

- Edit `settings.json`:

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