audiobookshelf/.prettierrc

19 lines
322 B
Text
Raw Normal View History

2023-10-05 02:29:11 +01:00
{
2023-10-05 19:04:10 +01:00
"editorconfig": true,
2023-10-05 02:29:11 +01:00
"semi": false,
"singleQuote": true,
"printWidth": 400,
"proseWrap": "never",
"trailingComma": "none",
"overrides": [
{
"files": ["*.html"],
"options": {
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
}
]
}