Ignore locales for acmesh-property. in checks

This commit is contained in:
Jamie Curnow 2023-01-13 11:12:02 +10:00
parent 8ddb191a7a
commit 18ecda7955

View File

@ -12,7 +12,12 @@ const allLocales = [
["fa", "fa-IR"],
];
const ignoreUnused = [/^capability\..*$/, /^host-type\..*$/, /^acmesh\..*$/];
const ignoreUnused = [
/^capability\..*$/,
/^host-type\..*$/,
/^acmesh\..*$/,
/^acmesh-property\..*$/,
];
const { spawnSync } = require("child_process");
const fs = require("fs");