1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-22 21:20:52 +02:00
beerbrawl/backend/.prettierrc
Christoph Heiss 8034be4eb3
chore: backend: add prettier for java + xml formatting
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2024-07-07 13:06:24 +02:00

16 lines
309 B
Plaintext

{
"tabWidth": 2,
"printWidth": 100,
"singleQuote": true,
"arrowParens": "avoid",
"plugins": ["prettier-plugin-java", "@prettier/plugin-xml"],
"xmlWhitespaceSensitivity": "ignore",
"overrides": [
{
"files": "**/*.{java,xml}",
"options": {
"tabWidth": 4
}
}
]
}