From 61fd38d6d9170a9583c62366a2d4afa40507ce01 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 22 Oct 2022 18:18:41 +0200 Subject: style: Sort imports --- src/plugins/clearURLs/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/plugins/clearURLs') diff --git a/src/plugins/clearURLs/index.ts b/src/plugins/clearURLs/index.ts index c760a90..be0b802 100644 --- a/src/plugins/clearURLs/index.ts +++ b/src/plugins/clearURLs/index.ts @@ -16,15 +16,15 @@ * along with this program. If not, see . */ -import { defaultRules } from "./defaultRules"; import { - addPreSendListener, addPreEditListener, + addPreSendListener, MessageObject, - removePreSendListener, removePreEditListener, + removePreSendListener, } from "../../api/MessageEvents"; import definePlugin from "../../utils/types"; +import { defaultRules } from "./defaultRules"; // From lodash const reRegExpChar = /[\\^$.*+?()[\]{}|]/g; -- cgit