aboutsummaryrefslogtreecommitdiffstats
path: root/annotations_formatter.js
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-02-10 12:38:27 +0000
committerGravatar GitHub <[email protected]>2021-02-10 12:38:27 +0000
commite99a42099c0f3c6df69efedebf1f049715097dd9 (patch)
tree632fe5dca5fd65e0115d3e6c60fc650a3219c1b6 /annotations_formatter.js
parentMerge pull request #136 from python-discord/dependabot/npm_and_yarn/typescrip... (diff)
parentUndo testing rules breaking (diff)
Merge pull request #133 from python-discord/github-annotations-eslint
Diffstat (limited to 'annotations_formatter.js')
-rw-r--r--annotations_formatter.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/annotations_formatter.js b/annotations_formatter.js
new file mode 100644
index 0000000..b3a421d
--- /dev/null
+++ b/annotations_formatter.js
@@ -0,0 +1,14 @@
+module.exports = function (results) {
+ let output = "";
+
+ for (const file of results.filter(r => r.messages.length > 0)) {
+ for (const message of file.messages) {
+ const path = file.filePath.substr(process.cwd().length + 1);
+ const severity = message.fatal || message.severity === 2 ? "error" : "warning";
+ const text = `[ESLint] ${message.ruleId}: ${message.message}`;
+ output += `::${severity} file=${path},line=${message.line},col=${message.column}::${text}\n`;
+ }
+ }
+
+ return output;
+};