2022-10-03 14:19:54 -07:00
|
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
2025-09-16 17:39:03 -07:00
|
|
|
import { rule } from '../utils/rule.js';
|
2022-10-03 14:19:54 -07:00
|
|
|
|
|
|
|
|
export default rule('icuPrefix', context => {
|
|
|
|
|
if (!context.messageId.startsWith('icu:')) {
|
|
|
|
|
context.report('ICU message IDs must start with "icu:"');
|
|
|
|
|
}
|
|
|
|
|
return {};
|
|
|
|
|
});
|