refactor: prefer type imports and sort imports

This commit is contained in:
Johannes Loher 2022-02-17 00:55:22 +01:00
parent 8d2cff77d7
commit 9cffa4df04
49 changed files with 124 additions and 105 deletions

View file

@ -5,18 +5,17 @@
// SPDX-License-Identifier: MIT
import { DS4ActiveEffect } from "../active-effect";
import { DS4Actor } from "../actor/actor";
import { DS4ActorProxy } from "../actor/proxy";
import { DS4CharacterActorSheet } from "../actor/character/character-sheet";
import { DS4CreatureActorSheet } from "../actor/creature/creature-sheet";
import { DS4ActorProxy } from "../actor/proxy";
import { DS4ChatMessage } from "../chat-message";
import { DS4 } from "../config";
import { preloadFonts as preloadFonts } from "../fonts";
import { preloadFonts } from "../fonts";
import registerHandlebarsHelpers from "../handlebars/handlebars-helpers";
import registerHandlebarsPartials from "../handlebars/handlebars-partials";
import { getGame } from "../helpers";
import { DS4Item } from "../item/item";
import { DS4ItemSheet } from "../item/item-sheet";
import { DS4ItemProxy } from "../item/proxy";
import logger from "../logger";
import { macros } from "../macros/macros";
import { migration } from "../migrations";
@ -26,7 +25,9 @@ import { DS4Roll } from "../rolls/roll";
import registerSlayingDiceModifier from "../rolls/slaying-dice-modifier";
import { registerSystemSettings } from "../settings";
import { DS4TokenDocument } from "../token-document";
import { DS4ItemProxy } from "../item/proxy";
import type { DS4Actor } from "../actor/actor";
import type { DS4Item } from "../item/item";
export default function registerForInitHook(): void {
Hooks.once("init", init);

View file

@ -20,9 +20,7 @@ export default function registerForRenderHooks(): void {
* @param html - The {@link JQuery} representing the HTML of the application.
*/
function selectTargetInputOnFocus(app: Application, html: JQuery) {
$(html)
.find("input")
.on("focus", (ev: JQuery.FocusEvent<HTMLInputElement>) => {
ev.currentTarget.select();
});
html.find("input").on("focus", (ev: JQuery.FocusEvent<HTMLInputElement>) => {
ev.currentTarget.select();
});
}