Files
DrupalTutorial/core/.prettierrc.json
2024-07-15 12:33:27 +02:00

17 lines
258 B
JSON
Executable File

{
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": ["*.css"],
"options": {
"parser": "css",
"printWidth": 10000,
"singleQuote": false
}
}
]
}