Update community plugin lint rules, add ts

This commit is contained in:
HaveAGitGat 2023-08-20 17:29:04 +01:00
parent 17f2dd6b3a
commit 92f97a8c81
93 changed files with 1722 additions and 631 deletions

View file

@ -7,7 +7,7 @@ const childProcess = require('child_process');
const filenames = fs.readdirSync(`${process.cwd()}/Community`).reverse();
const errorsEncountered = [];
const run = async () => {
const run = () => {
const pluginsToRun = [];
for (let i = 0; i < filenames.length; i += 1) {
const filename = filenames[i];
@ -74,4 +74,4 @@ const run = async () => {
}
};
run();
void run();