primeng/.prettierrc.json
2024-11-13 09:18:06 +00:00

30 lines
608 B
JSON

{
"useTabs": false,
"tabWidth": 4,
"trailingComma": "none",
"semi": true,
"singleQuote": true,
"printWidth": 250,
"bracketSameLine": false,
"overrides": [
{
"files": ["*.ts", "*.mts", "*.d.ts"],
"options": {
"parser": "typescript"
}
},
{
"files": ["*.html"],
"options": {
"parser": "html"
}
},
{
"files": ["*.component.html"],
"options": {
"parser": "angular"
}
}
]
}