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'
6import { getCurrentLocale, t, translate } from './i18n.js';6import { getCurrentLocale, t, translate } from './i18n.js';
7import { MacrosParser } from './macros.js';7import { MacrosParser } from './macros.js';
8import { chat_completion_sources, getChatCompletionModel, oai_settings } from './openai.js';8import { chat_completion_sources, getChatCompletionModel, oai_settings } from './openai.js';
9import { POPUP_RESULT, Popup } from './popup.js';9import { Popup } from './popup.js';
10import { performFuzzySearch, power_user } from './power-user.js';10import { performFuzzySearch, power_user } from './power-user.js';
11import { getPresetManager } from './preset-manager.js';11import { getPresetManager } from './preset-manager.js';
12import { SlashCommand } from './slash-commands/SlashCommand.js';12import { SlashCommand } from './slash-commands/SlashCommand.js';
public/scripts/slash-commands/SlashCommand.js+1 -5
@@ -6,13 +6,9 @@ import { SlashCommandDebugController } from './SlashCommandDebugController.js';
6import { SlashCommandScope } from './SlashCommandScope.js';6import { SlashCommandScope } from './SlashCommandScope.js';
77
8/**8/**
9 * @typedef {import('./SlashCommandParser.js').ParserFlags} ParserFlags
10 */
11
12/**
13 * @typedef {{9 * @typedef {{
14 * _scope:SlashCommandScope,10 * _scope:SlashCommandScope,
15 * _parserFlags:{ParserFlags},11 * _parserFlags:import('./SlashCommandParser.js').ParserFlags,
16 * _abortController:SlashCommandAbortController,12 * _abortController:SlashCommandAbortController,
17 * _debugController:SlashCommandDebugController,13 * _debugController:SlashCommandDebugController,
18 * _hasUnnamedArgument:boolean,14 * _hasUnnamedArgument:boolean,