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
- Host: GitHub
- URL: https://github.com/ilanfrumer/prettier-plugin-jsp
- Owner: IlanFrumer
- License: mit
- Created: 2022-08-30T06:01:06.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-21T13:28:55.000Z (over 3 years ago)
- Last Synced: 2025-07-21T14:59:21.337Z (11 months ago)
- Language: JavaScript
- Size: 103 KB
- Stars: 4
- Watchers: 1
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
```