nitro/.prettierrc

14 lines
343 B
Plaintext
Raw Normal View History

2023-03-16 23:15:43 +01:00
{
2023-03-17 00:22:55 +01:00
"trailingComma": "es5",
2023-03-24 16:36:04 +01:00
"endOfLine": "crlf",
2023-03-17 00:22:55 +01:00
"tabWidth": 2,
"bracketSpacing": false,
"singleQuote": false,
"arrowParens": "avoid",
"printWidth": 160,
"jsxBracketSameLine": true,
"importOrder": ["^@core/(.*)$", "^@server/(.*)$", "^@ui/(.*)$", "^[./]"],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}