mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
be12c6da20
* chore: start moving Button over * fix: convert ServerIdentityModal * fix: modal button styling * fix: popover styles * fix: clean up references to ui/*.* * fix: button sizing Co-authored-by: Ed L <beartechtalks@gmail.com>
15 lines
342 B
JavaScript
15 lines
342 B
JavaScript
module.exports = {
|
|
tabWidth: 4,
|
|
trailingComma: "all",
|
|
jsxBracketSameLine: true,
|
|
importOrder: [
|
|
"preact|classnames|.scss$",
|
|
"^@revoltchat",
|
|
"/(lib)",
|
|
"/(redux|mobx)",
|
|
"/(context)",
|
|
"/(ui|common)|.svg|.webp|.png|.jpg$",
|
|
"^[./]",
|
|
],
|
|
importOrderSeparation: true,
|
|
};
|