vibetunnel/web/.prettierrc.json
2025-06-25 12:22:13 +02:00

26 lines
No EOL
436 B
JSON

{
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"plugins": ["@prettier/plugin-oxc"],
"overrides": [
{
"files": "*.js",
"options": {
"parser": "oxc"
}
},
{
"files": "*.ts",
"options": {
"parser": "oxc-ts"
}
}
]
}