This plugin disallows the use of soft private modifier.
- ✒️ The
--fix
option on the command line can automatically fix some of the problems reported by this rule.
Deny: Use Soft private modifier.
@Component({})
export class SigninPage {
private platform = inject(Platform);
}
Allow: Use Hard private modifier.
@Component({})
export class SigninPage {
#platform = inject(Platform);
}