mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
lint: Require semicolons
This commit is contained in:
@ -4,7 +4,7 @@ import { power_user } from './power-user.js';
|
||||
export const markdownExclusionExt = () => {
|
||||
if (!power_user) {
|
||||
console.log('Showdown-dinkus extension: power_user wasn\'t found! Returning.');
|
||||
return []
|
||||
return [];
|
||||
}
|
||||
|
||||
let combinedExcludeString = '';
|
||||
@ -37,4 +37,4 @@ export const markdownExclusionExt = () => {
|
||||
regex: replaceRegex,
|
||||
replace: ((match) => match.replace(replaceRegex, `\u0000${match} \n`))
|
||||
}];
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user