18 lines
402 B
TypeScript
18 lines
402 B
TypeScript
|
// Copyright 2022 Signal Messenger, LLC
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
import { rule } from '../utils/rule';
|
||
|
|
||
|
export default rule('noLegacyVariables', context => {
|
||
|
return {
|
||
|
enterLiteral(element) {
|
||
|
if (/(\$.+?\$)/.test(element.value)) {
|
||
|
context.report(
|
||
|
'String must not contain legacy $variables$',
|
||
|
element.location
|
||
|
);
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
});
|