Chore: Add code formatting conventions as eslint rules (#5158)

* Add code formatting conventions as eslint rules

* Improve formatting in addQuickReply
This commit is contained in:
Cohee
2026-02-15 01:16:34 +02:00
committed by GitHub
parent d118eee014
commit 357da3219b
94 changed files with 366 additions and 566 deletions
+2 -2
View File
@@ -101,7 +101,7 @@ class CharacterContextMenu {
* @param {number} characterId
* @returns {Promise<void>}
*/
static persona = async (characterId) => void(await convertCharacterToPersona(characterId));
static persona = async (characterId) => void (await convertCharacterToPersona(characterId));
/**
* Delete one or more characters,
@@ -754,7 +754,7 @@ class BulkEditOverlay {
handleContextMenuShow = (event) => {
event.preventDefault();
const [x,y] = this.#getContextMenuPosition(event);
const [x, y] = this.#getContextMenuPosition(event);
CharacterContextMenu.show(x, y);
this.#contextMenuOpen = true;
};