Files
UNIT3D/.prettierrc
Roardom cf056b10e8 refactor: auto format .js, .vue, and .scss files with prettier
Update .editorconfig, .prettierrc and .prettierignore, then ran `./node_modules/.bin/prettier --write resources/`. For consistency, and convenience of auto-formatting on save.
2024-07-22 06:04:13 +00:00

48 lines
714 B
Plaintext

{
"plugins": [
"prettier-plugin-blade"
],
"overrides": [
{
"files": [
"*.blade.php"
],
"options": {
"parser": "blade",
"printWidth": 100,
"semi": true,
"singleQuote": true
}
},
{
"files": [
"*.js"
],
"options": {
"printWidth": 100,
"semi": true,
"singleQuote": true
}
},
{
"files": [
"*.vue"
],
"options": {
"printWidth": 100,
"semi": true,
"singleQuote": true
}
},
{
"files": [
"*.scss"
],
"options": {
"semi": true,
"singleQuote": true
}
}
]
}