mirror of
https://github.com/chenasraf/nextcloud-jukebox.git
synced 2026-05-17 17:38:02 +00:00
31 lines
583 B
Plaintext
31 lines
583 B
Plaintext
{
|
|
"plugins": [
|
|
"prettier-plugin-vue"
|
|
],
|
|
"printWidth": 100,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"bracketSameLine": true,
|
|
"vueIndentScriptAndStyle": true,
|
|
"htmlWhitespaceSensitivity": "strict",
|
|
"singleAttributePerLine": false,
|
|
"overrides": [
|
|
{
|
|
"files": "*.md",
|
|
"options": {
|
|
"printWidth": 100,
|
|
"proseWrap": "always"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.vue",
|
|
"options": {
|
|
"parser": "vue",
|
|
"bracketSameLine": true,
|
|
"htmlWhitespaceSensitivity": "strict"
|
|
}
|
|
}
|
|
]
|
|
}
|