1
0
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:
Laurent Cozic
2023-03-06 14:22:01 +00:00
parent aa4af69afc
commit c1db7182ac
129 changed files with 1252 additions and 1296 deletions

View File

@ -21,15 +21,15 @@ class Command extends BaseCommand {
private releaseLockFn_: Function = null;
private oneDriveApiUtils_: any = null;
usage() {
public usage() {
return 'sync';
}
description() {
public description() {
return _('Synchronises with remote storage.');
}
options() {
public options() {
return [
['--target <target>', _('Sync to provided target (defaults to sync.target config value)')],
['--upgrade', _('Upgrade the sync target to the latest version.')],
@ -45,7 +45,7 @@ class Command extends BaseCommand {
return locker.check(filePath);
}
async doAuth() {
public async doAuth() {
const syncTarget = reg.syncTarget(this.syncTargetId_);
const syncTargetMd = SyncTargetRegistry.idToMetadata(this.syncTargetId_);
@ -89,18 +89,18 @@ class Command extends BaseCommand {
return false;
}
cancelAuth() {
public cancelAuth() {
if (this.oneDriveApiUtils_) {
this.oneDriveApiUtils_.cancelOAuthDance();
return;
}
}
doingAuth() {
public doingAuth() {
return !!this.oneDriveApiUtils_;
}
async action(args: any) {
public async action(args: any) {
this.releaseLockFn_ = null;
// Lock is unique per profile/database
@ -238,7 +238,7 @@ class Command extends BaseCommand {
cleanUp();
}
async cancel() {
public async cancel() {
if (this.doingAuth()) {
this.cancelAuth();
return;
@ -263,7 +263,7 @@ class Command extends BaseCommand {
this.syncTargetId_ = null;
}
cancellable() {
public cancellable() {
return true;
}
}