Files
wgenerator/.prettierrc
Benjamin Ifland dd68a6b21d fix lf lint rule
2026-03-13 09:48:27 +01:00

28 lines
476 B
Plaintext

{
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "es5",
"endOfLine": "auto",
"bracketSpacing": false,
"arrowParens": "avoid",
"jsxBracketSameLine": false,
"printWidth": 180,
"overrides": [
{
"files": "*.component.html",
"options": {
"parser": "angular"
}
},
{
"files": "*.html",
"options": {
"parser": "html"
}
}
]
}