mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-21 09:20:08 -05:00
31 lines
398 B
Plaintext
31 lines
398 B
Plaintext
{
|
|
"plugins": [
|
|
"prettier-plugin-blade"
|
|
],
|
|
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"tabWidth": 4,
|
|
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.blade.php"
|
|
],
|
|
"options": {
|
|
"parser": "blade",
|
|
"printWidth": 100
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"*.js"
|
|
],
|
|
"options": {
|
|
"printWidth": 100
|
|
}
|
|
}
|
|
]
|
|
}
|