keycloak_theme/.prettierrc.json

25 lines
485 B
JSON
Raw Permalink Normal View History

{
2024-05-20 15:48:51 +02:00
"printWidth": 90,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
2024-05-20 15:48:51 +02:00
"arrowParens": "avoid",
"overrides": [
{
"files": "*.tsx",
"options": {
"printWidth": 150
}
},
{
"files": "useUserProfileForm.tsx",
"options": {
"printWidth": 150
}
}
]
}