lint: Require semicolons

This commit is contained in:
Cohee
2023-12-02 21:11:06 +02:00
parent 2ec14a59ee
commit c63cd87cc0
67 changed files with 1554 additions and 1552 deletions

View File

@ -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`))
}];
}
};