super-productivity/.prettierrc.json
2025-02-21 14:31:22 +01:00

21 lines
378 B
JSON

{
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"bracketSpacing": true,
"singleAttributePerLine": true,
"arrowParens": "always",
"endOfLine": "auto",
"printWidth": 90,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
}