signal-desktop/build/intl-linter/rules/noOffset.ts
2022-10-03 14:19:54 -07:00

17 lines
389 B
TypeScript

// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { rule } from '../utils/rule';
export default rule('noOffset', context => {
return {
enterPlural(element) {
if (element.offset !== 0) {
context.report(
'{plural} with offset is not supported by Smartling',
element.location
);
}
},
};
});