Files
schachfreunde-badsteben/.prettierrc
T
tfeigel 94078a7e6f Adds Prettier formatting and PHP support
Adds Prettier for consistent code formatting across the project.
Includes PHP plugin and configures formatting for PHP files.
Adds format and format:check scripts to package.json for ease of use.
2025-09-06 12:10:22 +02:00

18 lines
291 B
Plaintext

{
"tabWidth": 2,
"singleQuote": true,
"printWidth": 120,
"plugins": ["@prettier/plugin-php"],
"overrides": [
{
"files": "*.php",
"options": {
"parser": "php",
"tabWidth": 2,
"printWidth": 120,
"singleQuote": true
}
}
]
}