mondarth-campaign/.prettierrc.json
Ulenar of Mondarth 6803c8336b
Some checks failed
Build and Deploy Docs / build (push) Failing after 1m41s
Bump version / Bump version and create changelog with commitizen (push) Failing after 7s
chore: initial commit
2025-07-14 18:00:35 +00:00

46 lines
852 B
JSON

{
"printWidth": 120,
"tabWidth": 2,
"overrides": [
{
"files": ["*.scss", "*.css"],
"options": {
"requirePragma": false,
"parser": "scss"
}
},
{
"files": ["*.ts", "*.js", "*.mjs"],
"options": {
"arrowParens": "avoid",
"singleQuote": true,
"semi": true,
"bracketSameLine": true,
"trailingComma": "all"
}
},
{
"files": ["*.yml"],
"options": {
"tabWidth": 2
}
},
{
"files": "*.html",
"options": {
"requirePragma": false,
"parser": "html",
"htmlWhitespaceSensitivity": "ignore"
}
},
{
"files": "*.hbs",
"options": {
"requirePragma": false,
"parser": "angular",
"htmlWhitespaceSensitivity": "ignore"
}
}
]
}