Fix eslint not linting our custom eslint rules

This commit is contained in:
Matt Bierner
2025-03-19 22:49:06 -07:00
parent 79abfa3cef
commit 6b3e9f6759
16 changed files with 38 additions and 29 deletions

View File

@@ -19,7 +19,7 @@ export = new class DeclareServiceBrand implements eslint.Rule.RuleModule {
node,
message: `The '_serviceBrand'-property should not have a value`,
fix: (fixer) => {
return fixer.replaceText(node, 'declare _serviceBrand: undefined;')
return fixer.replaceText(node, 'declare _serviceBrand: undefined;');
}
});
}