Files
ISA-Frontend/.prettierrc.json
2025-02-24 15:25:16 +01:00

34 lines
617 B
JSON

{
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"htmlWhitespaceSensitivity": "ignore",
"endOfLine": "lf",
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular",
"printWidth": 140
}
},
{
"files": ["*.ts", "*.tsx"],
"options": {
"parser": "typescript"
}
},
{
"files": ["*.scss", "*.css"],
"options": {
"parser": "scss",
"singleQuote": false
}
}
]
}