Planning-FE/.prettierrc

22 lines
387 B
Plaintext

{
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "ignore",
"plugins": ["@angular-eslint/template-parser"],
"overrides": [
{
"files": ["*.component.html"],
"options": {
"parser": "angular"
}
}
]
}