« get me outta code hell

checks: stop suppressing sample ref errors - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-02-11 13:06:34 -0400
committer(quasar) nebula <qznebula@protonmail.com>2025-02-11 13:06:34 -0400
commitc11498540e3fa393278de64f54090bf08e75d1f0 (patch)
treeb406a950871a7d782eb51852af4a4820caf7106a /src/data
parent60d8f71e4f432d5131c59333c80ceefece0ea1db (diff)
checks: stop suppressing sample ref errors
Diffstat (limited to 'src/data')
-rw-r--r--src/data/checks.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/data/checks.js b/src/data/checks.js
index 8f9f0305..9a859165 100644
--- a/src/data/checks.js
+++ b/src/data/checks.js
@@ -373,6 +373,10 @@ export function filterReferenceErrors(wikiData, {
             }
 
             const suppress = fn => conditionallySuppressError(error => {
+              // We're not suppressing any errors at the moment.
+              // An old suppression is kept below for reference.
+
+              /*
               if (property === 'sampledTracks') {
                 // Suppress "didn't match anything" errors in particular, just for samples.
                 // In hsmusic-data we have a lot of "stub" sample data which don't have
@@ -385,6 +389,7 @@ export function filterReferenceErrors(wikiData, {
                   return true;
                 }
               }
+              */
 
               return false;
             }, fn);