We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da2031e commit 5718321Copy full SHA for 5718321
1 file changed
databases/catdat/scripts/redundancies.ts
@@ -33,6 +33,15 @@ function check_redundant_category_property_assignments() {
33
const assignments = get_all_assignments(db, categories)
34
const ignore_dict = get_ignored_redundant_properties(db)
35
36
+ const ignore_count = Object.keys(ignore_dict).reduce(
37
+ (count, id) => count + ignore_dict[id].size,
38
+ 0,
39
+ )
40
+
41
+ if (ignore_count > 0) {
42
+ console.info(`Ignore ${ignore_count} assignments`)
43
+ }
44
45
let redundancy_count = 0
46
47
for (const category of categories) {
0 commit comments