proj-dash-backend/.prettierrc

29 lines
521 B
Plaintext

{
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"arrowParens": "always",
"endOfLine": "lf",
"bracketSpacing": true,
"bracketSameLine": false,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"overrides": [
{
"files": "*.prisma",
"options": {
"tabWidth": 2
}
},
{
"files": ["*.json", "*.jsonc"],
"options": {
"tabWidth": 2,
"printWidth": 100
}
}
]
}