From 18ecda79559b18f01f9eafb7d380a06973d0e4fe Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Fri, 13 Jan 2023 11:12:02 +1000 Subject: [PATCH] Ignore locales for acmesh-property. in checks --- frontend/check-locales.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/check-locales.js b/frontend/check-locales.js index 0e71ab40..276137cd 100755 --- a/frontend/check-locales.js +++ b/frontend/check-locales.js @@ -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");