Upload sarif for eslint results

This commit is contained in:
Andrew Eisenberg 2024-09-09 13:15:25 -07:00
parent d8b1697e9a
commit 55c72b9aa6
No known key found for this signature in database
68 changed files with 18214 additions and 1 deletions

7
node_modules/jschardet/src/logger.js generated vendored Normal file
View file

@ -0,0 +1,7 @@
// By default, do nothing
exports.log = function () {};
exports.setLogger = function setLogger(loggerFunction) {
exports.enabled = true;
exports.log = loggerFunction;
};