mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 11:12:20 +00:00
27 lines
613 B
Plaintext
27 lines
613 B
Plaintext
{
|
|
"plugins": [
|
|
"prettier-plugin-blade",
|
|
"prettier-plugin-tailwindcss",
|
|
"prettier-plugin-sh"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.blade.php"],
|
|
"options": {
|
|
"parser": "blade",
|
|
"printWidth": 120,
|
|
"htmlWhitespaceSensitivity": "ignore",
|
|
"tabWidth": 4,
|
|
"quoteProps": "consistent",
|
|
"trailingComma": "none"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.sh"],
|
|
"options": {
|
|
"parser": "sh"
|
|
}
|
|
}
|
|
]
|
|
}
|