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

@ -30,7 +30,7 @@ const converters = {
'application/pdf': extractTextFromPDF,
'text/html': extractTextFromHTML,
'text/markdown': extractTextFromMarkdown,
}
};
function isConvertible(type) {
return Object.keys(converters).includes(type);
@ -381,4 +381,4 @@ jQuery(function () {
$('#file_form').on('reset', function () {
$('#file_form').addClass('displayNone');
});
})
});