I'm finding a common pattern in our code: ```TS export class PageObject { get saveButton() { return '[data-testid="saveButton"]'; } } ``` I would like to enforce using simple `readonly` members instead of getter functions: ```TS export class PageObject { readonly saveButton = '[data-testid="saveButton"]'; } ``` This could also be applied to getter functions that return other literals, such as integers. Some people prefer the reverse, so the rule should be bidirectional.