You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
Tools: Add class member accessibility modifiers and converted rule @typescript-eslint/explicit-member-accessibility to an error
This commit is contained in:
@ -8,7 +8,7 @@ export default class KeychainService extends BaseService {
|
||||
private static instance_: KeychainService;
|
||||
private enabled_: boolean = true;
|
||||
|
||||
static instance(): KeychainService {
|
||||
public static instance(): KeychainService {
|
||||
if (!this.instance_) this.instance_ = new KeychainService();
|
||||
return this.instance_;
|
||||
}
|
||||
|
Reference in New Issue
Block a user