Chore: introduce eslint to build script

This commit is contained in:
SukkaW
2023-07-12 23:14:20 +08:00
parent aeb90e36ca
commit 09961fad44
20 changed files with 299 additions and 190 deletions

View File

@@ -110,7 +110,7 @@ const BLACK_TLD = Array.from(new Set([
if (
count >= 5
) {
results.push('.' + domain);
results.push(`.${domain}`);
}
});
@@ -132,5 +132,5 @@ const BLACK_TLD = Array.from(new Set([
results
),
path.resolve(__dirname, '../List/domainset/reject_phishing.conf')
)
);
})();