revite/.prettierrc.js

17 lines
354 B
JavaScript
Raw Normal View History

2021-07-05 11:15:02 +01:00
module.exports = {
2021-07-29 15:11:21 +01:00
tabWidth: 4,
trailingComma: "all",
jsxBracketSameLine: true,
importOrder: [
"preact|classnames|.scss$",
"^@revoltchat",
2021-07-29 15:11:21 +01:00
"/(lib)",
"/(redux|mobx)",
"/(context)",
2022-05-25 16:43:59 +01:00
"/(ui|common)$",
".svg|.webp|.png|.jpg$",
2021-07-29 15:11:21 +01:00
"^[./]",
],
importOrderSeparation: true,
};