ts/.prettierrc.json

24 lines
422 B
JSON
Raw Normal View History

2024-12-09 06:44:52 +00:00
{
"printWidth": 80,
"useTabs": false,
"tabWidth": 2,
"proseWrap": "preserve",
"endOfLine": "auto",
"semi": false,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"overrides": [
{
"files": "*.scss",
"options": {
"semi": true
}
}
]
}