Fix the rest of lints

a183c8f69ad17b141ad40c8e7d9defa6d8025250

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +2 -6Ignore whitespace
public/scripts/reasoning.js+1 -1
@@ -6,7 +6,7 @@ import { getRegexedString, regex_placement } from './extensions/regex/engine.js'
66import { getCurrentLocale, t, translate } from './i18n.js';
77import { MacrosParser } from './macros.js';
88import { chat_completion_sources, getChatCompletionModel, oai_settings } from './openai.js';
99import { POPUP_RESULT, Popup } from './popup.js';
1010import { performFuzzySearch, power_user } from './power-user.js';
1111import { getPresetManager } from './preset-manager.js';
1212import { SlashCommand } from './slash-commands/SlashCommand.js';
public/scripts/slash-commands/SlashCommand.js+1 -5
@@ -6,13 +6,9 @@ import { SlashCommandDebugController } from './SlashCommandDebugController.js';
66import { SlashCommandScope } from './SlashCommandScope.js';
77
88/**
9- * @typedef {import('./SlashCommandParser.js').ParserFlags} ParserFlags
10- */
11-
12-/**
139 * @typedef {{
1410 * _scope:SlashCommandScope,
1511 * _parserFlags:{import('./SlashCommandParser.js').ParserFlags},
1612 * _abortController:SlashCommandAbortController,
1713 * _debugController:SlashCommandDebugController,
1814 * _hasUnnamedArgument:boolean,