From 3b8ca0d5921b9d60d84c78adbe1938c1e3eee665 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Mon, 10 Apr 2023 21:21:49 +0200 Subject: [PATCH] lint --- tabby-core/src/components/profileIcon.component.ts | 2 +- tabby-core/src/components/promptModal.component.ts | 2 +- tabby-core/src/components/renameTabModal.component.ts | 2 +- tabby-core/src/components/safeModeModal.component.ts | 2 +- tabby-core/src/components/selectorModal.component.ts | 2 +- tabby-core/src/components/startPage.component.ts | 2 +- tabby-core/src/components/tabHeader.component.ts | 2 +- tabby-core/src/components/titleBar.component.ts | 2 +- tabby-core/src/components/transfersMenu.component.ts | 2 +- tabby-core/src/components/unlockVaultModal.component.ts | 2 +- tabby-core/src/components/welcomeTab.component.ts | 2 +- tabby-core/src/components/windowControls.component.ts | 2 +- tabby-core/src/directives/cdkAutoDropGroup.directive.ts | 1 + tabby-local/src/components/commandLineEditor.component.ts | 2 +- tabby-local/src/components/environmentEditor.component.ts | 2 +- tabby-local/src/components/localProfileSettings.component.ts | 2 +- tabby-local/src/components/shellSettingsTab.component.ts | 2 +- .../src/components/pluginsSettingsTab.component.ts | 2 +- tabby-serial/src/components/serialProfileSettings.component.ts | 2 +- .../src/components/configSyncSettingsTab.component.ts | 2 +- tabby-settings/src/components/editProfileModal.component.ts | 2 +- tabby-settings/src/components/hotkeyInputModal.component.ts | 2 +- tabby-settings/src/components/hotkeySettingsTab.component.ts | 2 +- tabby-settings/src/components/multiHotkeyInput.component.ts | 2 +- tabby-settings/src/components/profilesSettingsTab.component.ts | 2 +- tabby-settings/src/components/releaseNotesTab.component.ts | 2 +- .../src/components/setVaultPassphraseModal.component.ts | 2 +- tabby-settings/src/components/settingsTab.component.ts | 2 +- tabby-settings/src/components/vaultSettingsTab.component.ts | 2 +- tabby-settings/src/components/windowSettingsTab.component.ts | 2 +- tabby-ssh/src/components/hostKeyPromptModal.component.ts | 2 +- .../src/components/keyboardInteractiveAuthPanel.component.ts | 2 +- tabby-ssh/src/components/sftpCreateDirectoryModal.component.ts | 2 +- tabby-ssh/src/components/sftpDeleteModal.component.ts | 2 +- tabby-ssh/src/components/sftpPanel.component.ts | 2 +- tabby-ssh/src/components/sshPortForwardingConfig.component.ts | 2 +- tabby-ssh/src/components/sshPortForwardingModal.component.ts | 2 +- tabby-ssh/src/components/sshProfileSettings.component.ts | 2 +- tabby-ssh/src/components/sshSettingsTab.component.ts | 2 +- tabby-telnet/src/components/telnetProfileSettings.component.ts | 2 +- .../src/components/appearanceSettingsTab.component.ts | 2 +- tabby-terminal/src/components/colorPicker.component.ts | 2 +- tabby-terminal/src/components/colorSchemePreview.component.ts | 2 +- .../src/components/colorSchemeSettingsTab.component.ts | 2 +- tabby-terminal/src/components/loginScriptsSettings.component.ts | 2 +- tabby-terminal/src/components/searchPanel.component.ts | 2 +- .../src/components/streamProcessingSettings.component.ts | 2 +- tabby-terminal/src/components/terminalSettingsTab.component.ts | 2 +- tabby-terminal/src/components/terminalToolbar.component.ts | 2 +- tabby-web/src/components/messageBoxModal.component.ts | 2 +- 50 files changed, 50 insertions(+), 49 deletions(-) diff --git a/tabby-core/src/components/profileIcon.component.ts b/tabby-core/src/components/profileIcon.component.ts index 80d9733d..89df4229 100644 --- a/tabby-core/src/components/profileIcon.component.ts +++ b/tabby-core/src/components/profileIcon.component.ts @@ -5,7 +5,7 @@ import { BaseComponent } from './base.component' /** @hidden */ @Component({ selector: 'profile-icon', - templateUrl:'./profileIcon.component.pug', + templateUrl: './profileIcon.component.pug', styleUrls: ['./profileIcon.component.scss'], }) export class ProfileIconComponent extends BaseComponent { diff --git a/tabby-core/src/components/promptModal.component.ts b/tabby-core/src/components/promptModal.component.ts index 84780d64..0590c147 100644 --- a/tabby-core/src/components/promptModal.component.ts +++ b/tabby-core/src/components/promptModal.component.ts @@ -3,7 +3,7 @@ import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ - templateUrl:'./promptModal.component.pug', + templateUrl: './promptModal.component.pug', }) export class PromptModalComponent { @Input() value: string diff --git a/tabby-core/src/components/renameTabModal.component.ts b/tabby-core/src/components/renameTabModal.component.ts index a912efb4..88a36bc6 100644 --- a/tabby-core/src/components/renameTabModal.component.ts +++ b/tabby-core/src/components/renameTabModal.component.ts @@ -5,7 +5,7 @@ import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ selector: 'rename-tab-modal', - templateUrl:'./renameTabModal.component.pug', + templateUrl: './renameTabModal.component.pug', }) export class RenameTabModalComponent { @Input() value: string diff --git a/tabby-core/src/components/safeModeModal.component.ts b/tabby-core/src/components/safeModeModal.component.ts index b2f3ee5e..8054ffbf 100644 --- a/tabby-core/src/components/safeModeModal.component.ts +++ b/tabby-core/src/components/safeModeModal.component.ts @@ -3,7 +3,7 @@ import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ - templateUrl:'./safeModeModal.component.pug', + templateUrl: './safeModeModal.component.pug', }) export class SafeModeModalComponent { @Input() error: Error diff --git a/tabby-core/src/components/selectorModal.component.ts b/tabby-core/src/components/selectorModal.component.ts index e40edfd2..23bcdc4b 100644 --- a/tabby-core/src/components/selectorModal.component.ts +++ b/tabby-core/src/components/selectorModal.component.ts @@ -7,7 +7,7 @@ import { SelectorOption } from '../api/selector' /** @hidden */ @Component({ selector: 'selector-modal', - templateUrl:'./selectorModal.component.pug', + templateUrl: './selectorModal.component.pug', styleUrls: ['./selectorModal.component.scss'], }) export class SelectorModalComponent { diff --git a/tabby-core/src/components/startPage.component.ts b/tabby-core/src/components/startPage.component.ts index 2f47c76c..2d6c6a87 100644 --- a/tabby-core/src/components/startPage.component.ts +++ b/tabby-core/src/components/startPage.component.ts @@ -7,7 +7,7 @@ import { Command, CommandLocation } from '../api/commands' /** @hidden */ @Component({ selector: 'start-page', - templateUrl:'./startPage.component.pug', + templateUrl: './startPage.component.pug', styleUrls: ['./startPage.component.scss'], }) export class StartPageComponent { diff --git a/tabby-core/src/components/tabHeader.component.ts b/tabby-core/src/components/tabHeader.component.ts index ba53d1e1..6fdd8552 100644 --- a/tabby-core/src/components/tabHeader.component.ts +++ b/tabby-core/src/components/tabHeader.component.ts @@ -15,7 +15,7 @@ import { PlatformService } from '../api/platform' /** @hidden */ @Component({ selector: 'tab-header', - templateUrl:'./tabHeader.component.pug', + templateUrl: './tabHeader.component.pug', styleUrls: ['./tabHeader.component.scss'], }) export class TabHeaderComponent extends BaseComponent { diff --git a/tabby-core/src/components/titleBar.component.ts b/tabby-core/src/components/titleBar.component.ts index a6be133f..9ad6e1d8 100644 --- a/tabby-core/src/components/titleBar.component.ts +++ b/tabby-core/src/components/titleBar.component.ts @@ -4,7 +4,7 @@ import { HostWindowService } from '../api' /** @hidden */ @Component({ selector: 'title-bar', - templateUrl:'./titleBar.component.pug', + templateUrl: './titleBar.component.pug', styleUrls: ['./titleBar.component.scss'], }) export class TitleBarComponent { diff --git a/tabby-core/src/components/transfersMenu.component.ts b/tabby-core/src/components/transfersMenu.component.ts index 02f3dff9..70b383dd 100644 --- a/tabby-core/src/components/transfersMenu.component.ts +++ b/tabby-core/src/components/transfersMenu.component.ts @@ -5,7 +5,7 @@ import { FileDownload, FileTransfer, PlatformService } from '../api/platform' /** @hidden */ @Component({ selector: 'transfers-menu', - templateUrl:'./transfersMenu.component.pug', + templateUrl: './transfersMenu.component.pug', styleUrls: ['./transfersMenu.component.scss'], }) export class TransfersMenuComponent { diff --git a/tabby-core/src/components/unlockVaultModal.component.ts b/tabby-core/src/components/unlockVaultModal.component.ts index 7a4dcb3c..0367e294 100644 --- a/tabby-core/src/components/unlockVaultModal.component.ts +++ b/tabby-core/src/components/unlockVaultModal.component.ts @@ -3,7 +3,7 @@ import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ - templateUrl:'./unlockVaultModal.component.pug', + templateUrl: './unlockVaultModal.component.pug', }) export class UnlockVaultModalComponent { passphrase: string diff --git a/tabby-core/src/components/welcomeTab.component.ts b/tabby-core/src/components/welcomeTab.component.ts index 53f09151..756167b4 100644 --- a/tabby-core/src/components/welcomeTab.component.ts +++ b/tabby-core/src/components/welcomeTab.component.ts @@ -8,7 +8,7 @@ import { LocaleService } from '../services/locale.service' /** @hidden */ @Component({ selector: 'welcome-page', - templateUrl:'./welcomeTab.component.pug', + templateUrl: './welcomeTab.component.pug', styleUrls: ['./welcomeTab.component.scss'], }) export class WelcomeTabComponent extends BaseTabComponent { diff --git a/tabby-core/src/components/windowControls.component.ts b/tabby-core/src/components/windowControls.component.ts index d8796231..7e974547 100644 --- a/tabby-core/src/components/windowControls.component.ts +++ b/tabby-core/src/components/windowControls.component.ts @@ -6,7 +6,7 @@ import { AppService } from '../services/app.service' /** @hidden */ @Component({ selector: 'window-controls', - templateUrl:'./windowControls.component.pug', + templateUrl: './windowControls.component.pug', styleUrls: ['./windowControls.component.scss'], }) export class WindowControlsComponent { diff --git a/tabby-core/src/directives/cdkAutoDropGroup.directive.ts b/tabby-core/src/directives/cdkAutoDropGroup.directive.ts index 11aa3fd0..e8c9da6f 100644 --- a/tabby-core/src/directives/cdkAutoDropGroup.directive.ts +++ b/tabby-core/src/directives/cdkAutoDropGroup.directive.ts @@ -19,6 +19,7 @@ export class CdkAutoDropGroup implements OnInit { ) { } ngOnInit (): void { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition CdkAutoDropGroup.groups[this.groupName] ??= new FakeDropGroup() CdkAutoDropGroup.groups[this.groupName]._items.add(this.cdkDropList) this.cdkDropList['_group'] = CdkAutoDropGroup.groups[this.groupName] diff --git a/tabby-local/src/components/commandLineEditor.component.ts b/tabby-local/src/components/commandLineEditor.component.ts index 9169a1ae..47e4a3bd 100644 --- a/tabby-local/src/components/commandLineEditor.component.ts +++ b/tabby-local/src/components/commandLineEditor.component.ts @@ -6,7 +6,7 @@ import { SessionOptions } from '../api' /** @hidden */ @Component({ selector: 'command-line-editor', - templateUrl:'./commandLineEditor.component.pug', + templateUrl: './commandLineEditor.component.pug', }) export class CommandLineEditorComponent { @Input() argvMode = false diff --git a/tabby-local/src/components/environmentEditor.component.ts b/tabby-local/src/components/environmentEditor.component.ts index bb16dc4c..bce408aa 100644 --- a/tabby-local/src/components/environmentEditor.component.ts +++ b/tabby-local/src/components/environmentEditor.component.ts @@ -5,7 +5,7 @@ import { Subject } from 'rxjs' /** @hidden */ @Component({ selector: 'environment-editor', - templateUrl:'./environmentEditor.component.pug', + templateUrl: './environmentEditor.component.pug', styleUrls: ['./environmentEditor.component.scss'], }) export class EnvironmentEditorComponent { diff --git a/tabby-local/src/components/localProfileSettings.component.ts b/tabby-local/src/components/localProfileSettings.component.ts index a79973f1..45200e3d 100644 --- a/tabby-local/src/components/localProfileSettings.component.ts +++ b/tabby-local/src/components/localProfileSettings.component.ts @@ -6,7 +6,7 @@ import { PlatformService, ProfileSettingsComponent } from 'tabby-core' /** @hidden */ @Component({ - templateUrl:'./localProfileSettings.component.pug', + templateUrl: './localProfileSettings.component.pug', }) export class LocalProfileSettingsComponent implements ProfileSettingsComponent { profile: LocalProfile diff --git a/tabby-local/src/components/shellSettingsTab.component.ts b/tabby-local/src/components/shellSettingsTab.component.ts index e7f4cf74..db54f60b 100644 --- a/tabby-local/src/components/shellSettingsTab.component.ts +++ b/tabby-local/src/components/shellSettingsTab.component.ts @@ -3,7 +3,7 @@ import { WIN_BUILD_CONPTY_SUPPORTED, WIN_BUILD_CONPTY_STABLE, isWindowsBuild, Co /** @hidden */ @Component({ - templateUrl:'./shellSettingsTab.component.pug', + templateUrl: './shellSettingsTab.component.pug', }) export class ShellSettingsTabComponent { isConPTYAvailable: boolean diff --git a/tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts b/tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts index 93fa7c9b..410adab8 100644 --- a/tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts +++ b/tabby-plugin-manager/src/components/pluginsSettingsTab.component.ts @@ -15,7 +15,7 @@ _('Search plugins') /** @hidden */ @Component({ - templateUrl:'./pluginsSettingsTab.component.pug', + templateUrl: './pluginsSettingsTab.component.pug', styleUrls: ['./pluginsSettingsTab.component.scss'], }) export class PluginsSettingsTabComponent { diff --git a/tabby-serial/src/components/serialProfileSettings.component.ts b/tabby-serial/src/components/serialProfileSettings.component.ts index 0f0909e2..a78721d8 100644 --- a/tabby-serial/src/components/serialProfileSettings.component.ts +++ b/tabby-serial/src/components/serialProfileSettings.component.ts @@ -7,7 +7,7 @@ import { SerialService } from '../services/serial.service' /** @hidden */ @Component({ - templateUrl:'./serialProfileSettings.component.pug', + templateUrl: './serialProfileSettings.component.pug', }) export class SerialProfileSettingsComponent implements ProfileSettingsComponent { profile: SerialProfile diff --git a/tabby-settings/src/components/configSyncSettingsTab.component.ts b/tabby-settings/src/components/configSyncSettingsTab.component.ts index 7909b7d8..8e41f624 100644 --- a/tabby-settings/src/components/configSyncSettingsTab.component.ts +++ b/tabby-settings/src/components/configSyncSettingsTab.component.ts @@ -8,7 +8,7 @@ import { Config, ConfigSyncService } from '../services/configSync.service' /** @hidden */ @Component({ selector: 'config-sync-settings-tab', - templateUrl:'./configSyncSettingsTab.component.pug', + templateUrl: './configSyncSettingsTab.component.pug', }) export class ConfigSyncSettingsTabComponent extends BaseComponent { connectionSuccessful: boolean|null = null diff --git a/tabby-settings/src/components/editProfileModal.component.ts b/tabby-settings/src/components/editProfileModal.component.ts index 4248f1a9..90636672 100644 --- a/tabby-settings/src/components/editProfileModal.component.ts +++ b/tabby-settings/src/components/editProfileModal.component.ts @@ -13,7 +13,7 @@ const iconsClassList = Object.keys(iconsData).map( /** @hidden */ @Component({ - templateUrl:'./editProfileModal.component.pug', + templateUrl: './editProfileModal.component.pug', }) export class EditProfileModalComponent

{ @Input() profile: P & ConfigProxy diff --git a/tabby-settings/src/components/hotkeyInputModal.component.ts b/tabby-settings/src/components/hotkeyInputModal.component.ts index 5277118a..c614f829 100644 --- a/tabby-settings/src/components/hotkeyInputModal.component.ts +++ b/tabby-settings/src/components/hotkeyInputModal.component.ts @@ -8,7 +8,7 @@ const INPUT_TIMEOUT = 1000 /** @hidden */ @Component({ selector: 'hotkey-input-modal', - templateUrl:'./hotkeyInputModal.component.pug', + templateUrl: './hotkeyInputModal.component.pug', styleUrls: ['./hotkeyInputModal.component.scss'], animations: [ trigger('animateKey', [ diff --git a/tabby-settings/src/components/hotkeySettingsTab.component.ts b/tabby-settings/src/components/hotkeySettingsTab.component.ts index 245192ab..8ce69690 100644 --- a/tabby-settings/src/components/hotkeySettingsTab.component.ts +++ b/tabby-settings/src/components/hotkeySettingsTab.component.ts @@ -14,7 +14,7 @@ _('Search hotkeys') /** @hidden */ @Component({ selector: 'hotkey-settings-tab', - templateUrl:'./hotkeySettingsTab.component.pug', + templateUrl: './hotkeySettingsTab.component.pug', }) export class HotkeySettingsTabComponent { hotkeyFilter = '' diff --git a/tabby-settings/src/components/multiHotkeyInput.component.ts b/tabby-settings/src/components/multiHotkeyInput.component.ts index 05345b58..4a2aa81b 100644 --- a/tabby-settings/src/components/multiHotkeyInput.component.ts +++ b/tabby-settings/src/components/multiHotkeyInput.component.ts @@ -7,7 +7,7 @@ import deepEqual from 'deep-equal' /** @hidden */ @Component({ selector: 'multi-hotkey-input', - templateUrl:'./multiHotkeyInput.component.pug', + templateUrl: './multiHotkeyInput.component.pug', styleUrls: ['./multiHotkeyInput.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) diff --git a/tabby-settings/src/components/profilesSettingsTab.component.ts b/tabby-settings/src/components/profilesSettingsTab.component.ts index b0032c7c..06dee54f 100644 --- a/tabby-settings/src/components/profilesSettingsTab.component.ts +++ b/tabby-settings/src/components/profilesSettingsTab.component.ts @@ -19,7 +19,7 @@ _('Ungrouped') /** @hidden */ @Component({ - templateUrl:'./profilesSettingsTab.component.pug', + templateUrl: './profilesSettingsTab.component.pug', styleUrls: ['./profilesSettingsTab.component.scss'], }) export class ProfilesSettingsTabComponent extends BaseComponent { diff --git a/tabby-settings/src/components/releaseNotesTab.component.ts b/tabby-settings/src/components/releaseNotesTab.component.ts index 62740476..0b16595b 100644 --- a/tabby-settings/src/components/releaseNotesTab.component.ts +++ b/tabby-settings/src/components/releaseNotesTab.component.ts @@ -15,7 +15,7 @@ export interface Release { /** @hidden */ @Component({ selector: 'release-notes-tab', - templateUrl:'./releaseNotesTab.component.pug', + templateUrl: './releaseNotesTab.component.pug', styleUrls: ['./releaseNotesTab.component.scss'], }) export class ReleaseNotesComponent extends BaseTabComponent { diff --git a/tabby-settings/src/components/setVaultPassphraseModal.component.ts b/tabby-settings/src/components/setVaultPassphraseModal.component.ts index 827b12bb..86ffb14a 100644 --- a/tabby-settings/src/components/setVaultPassphraseModal.component.ts +++ b/tabby-settings/src/components/setVaultPassphraseModal.component.ts @@ -3,7 +3,7 @@ import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' /** @hidden */ @Component({ - templateUrl:'./setVaultPassphraseModal.component.pug', + templateUrl: './setVaultPassphraseModal.component.pug', }) export class SetVaultPassphraseModalComponent { passphrase: string diff --git a/tabby-settings/src/components/settingsTab.component.ts b/tabby-settings/src/components/settingsTab.component.ts index 3d8e498b..c6c8db34 100644 --- a/tabby-settings/src/components/settingsTab.component.ts +++ b/tabby-settings/src/components/settingsTab.component.ts @@ -23,7 +23,7 @@ import { ReleaseNotesComponent } from './releaseNotesTab.component' /** @hidden */ @Component({ selector: 'settings-tab', - templateUrl:'./settingsTab.component.pug', + templateUrl: './settingsTab.component.pug', styleUrls: [ './settingsTab.component.scss', ], diff --git a/tabby-settings/src/components/vaultSettingsTab.component.ts b/tabby-settings/src/components/vaultSettingsTab.component.ts index c94533f2..b34fa8d6 100644 --- a/tabby-settings/src/components/vaultSettingsTab.component.ts +++ b/tabby-settings/src/components/vaultSettingsTab.component.ts @@ -8,7 +8,7 @@ import { SetVaultPassphraseModalComponent } from './setVaultPassphraseModal.comp /** @hidden */ @Component({ selector: 'vault-settings-tab', - templateUrl:'./vaultSettingsTab.component.pug', + templateUrl: './vaultSettingsTab.component.pug', }) export class VaultSettingsTabComponent extends BaseComponent { vaultContents: Vault|null = null diff --git a/tabby-settings/src/components/windowSettingsTab.component.ts b/tabby-settings/src/components/windowSettingsTab.component.ts index 15448b76..4fd0d8f5 100644 --- a/tabby-settings/src/components/windowSettingsTab.component.ts +++ b/tabby-settings/src/components/windowSettingsTab.component.ts @@ -18,7 +18,7 @@ import { /** @hidden */ @Component({ selector: 'window-settings-tab', - templateUrl:'./windowSettingsTab.component.pug', + templateUrl: './windowSettingsTab.component.pug', }) export class WindowSettingsTabComponent extends BaseComponent { screens: Screen[] diff --git a/tabby-ssh/src/components/hostKeyPromptModal.component.ts b/tabby-ssh/src/components/hostKeyPromptModal.component.ts index 33baa898..49437435 100644 --- a/tabby-ssh/src/components/hostKeyPromptModal.component.ts +++ b/tabby-ssh/src/components/hostKeyPromptModal.component.ts @@ -5,7 +5,7 @@ import { KnownHost, KnownHostSelector, SSHKnownHostsService } from '../services/ /** @hidden */ @Component({ - templateUrl:'./hostKeyPromptModal.component.pug', + templateUrl: './hostKeyPromptModal.component.pug', }) export class HostKeyPromptModalComponent { @Input() selector: KnownHostSelector diff --git a/tabby-ssh/src/components/keyboardInteractiveAuthPanel.component.ts b/tabby-ssh/src/components/keyboardInteractiveAuthPanel.component.ts index e12db57c..8d714144 100644 --- a/tabby-ssh/src/components/keyboardInteractiveAuthPanel.component.ts +++ b/tabby-ssh/src/components/keyboardInteractiveAuthPanel.component.ts @@ -4,7 +4,7 @@ import { KeyboardInteractivePrompt } from '../session/ssh' @Component({ selector: 'keyboard-interactive-auth-panel', - templateUrl:'./keyboardInteractiveAuthPanel.component.pug', + templateUrl: './keyboardInteractiveAuthPanel.component.pug', styleUrls: ['./keyboardInteractiveAuthPanel.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) diff --git a/tabby-ssh/src/components/sftpCreateDirectoryModal.component.ts b/tabby-ssh/src/components/sftpCreateDirectoryModal.component.ts index 2dfbf189..fc91083d 100644 --- a/tabby-ssh/src/components/sftpCreateDirectoryModal.component.ts +++ b/tabby-ssh/src/components/sftpCreateDirectoryModal.component.ts @@ -4,7 +4,7 @@ import { BaseComponent } from 'tabby-core' /** @hidden */ @Component({ - templateUrl:'./sftpCreateDirectoryModal.component.pug', + templateUrl: './sftpCreateDirectoryModal.component.pug', }) export class SFTPCreateDirectoryModalComponent extends BaseComponent { directoryName: string diff --git a/tabby-ssh/src/components/sftpDeleteModal.component.ts b/tabby-ssh/src/components/sftpDeleteModal.component.ts index bdea23c0..0c6f0978 100644 --- a/tabby-ssh/src/components/sftpDeleteModal.component.ts +++ b/tabby-ssh/src/components/sftpDeleteModal.component.ts @@ -5,7 +5,7 @@ import { SFTPFile, SFTPSession } from '../session/sftp' /** @hidden */ @Component({ - templateUrl:'./sftpDeleteModal.component.pug', + templateUrl: './sftpDeleteModal.component.pug', }) export class SFTPDeleteModalComponent extends BaseComponent { sftp: SFTPSession diff --git a/tabby-ssh/src/components/sftpPanel.component.ts b/tabby-ssh/src/components/sftpPanel.component.ts index fb4cf9e8..f0bcfbef 100644 --- a/tabby-ssh/src/components/sftpPanel.component.ts +++ b/tabby-ssh/src/components/sftpPanel.component.ts @@ -15,7 +15,7 @@ interface PathSegment { @Component({ selector: 'sftp-panel', - templateUrl:'./sftpPanel.component.pug', + templateUrl: './sftpPanel.component.pug', styleUrls: ['./sftpPanel.component.scss'], }) export class SFTPPanelComponent { diff --git a/tabby-ssh/src/components/sshPortForwardingConfig.component.ts b/tabby-ssh/src/components/sshPortForwardingConfig.component.ts index 94dcd7a7..d37d5367 100644 --- a/tabby-ssh/src/components/sshPortForwardingConfig.component.ts +++ b/tabby-ssh/src/components/sshPortForwardingConfig.component.ts @@ -5,7 +5,7 @@ import { ForwardedPortConfig, PortForwardType } from '../api' /** @hidden */ @Component({ selector: 'ssh-port-forwarding-config', - templateUrl:'./sshPortForwardingConfig.component.pug', + templateUrl: './sshPortForwardingConfig.component.pug', }) export class SSHPortForwardingConfigComponent { @Input() model: ForwardedPortConfig[] diff --git a/tabby-ssh/src/components/sshPortForwardingModal.component.ts b/tabby-ssh/src/components/sshPortForwardingModal.component.ts index c3cf4612..3cbe3634 100644 --- a/tabby-ssh/src/components/sshPortForwardingModal.component.ts +++ b/tabby-ssh/src/components/sshPortForwardingModal.component.ts @@ -6,7 +6,7 @@ import { ForwardedPortConfig } from '../api' /** @hidden */ @Component({ - templateUrl:'./sshPortForwardingModal.component.pug', + templateUrl: './sshPortForwardingModal.component.pug', }) export class SSHPortForwardingModalComponent { @Input() session: SSHSession diff --git a/tabby-ssh/src/components/sshProfileSettings.component.ts b/tabby-ssh/src/components/sshProfileSettings.component.ts index 89b51ac7..d2891e51 100644 --- a/tabby-ssh/src/components/sshProfileSettings.component.ts +++ b/tabby-ssh/src/components/sshProfileSettings.component.ts @@ -11,7 +11,7 @@ import { supportedAlgorithms } from '../algorithms' /** @hidden */ @Component({ - templateUrl:'./sshProfileSettings.component.pug', + templateUrl: './sshProfileSettings.component.pug', }) export class SSHProfileSettingsComponent { Platform = Platform diff --git a/tabby-ssh/src/components/sshSettingsTab.component.ts b/tabby-ssh/src/components/sshSettingsTab.component.ts index 4af011f4..f7197afe 100644 --- a/tabby-ssh/src/components/sshSettingsTab.component.ts +++ b/tabby-ssh/src/components/sshSettingsTab.component.ts @@ -4,7 +4,7 @@ import { ConfigService, HostAppService, Platform } from 'tabby-core' /** @hidden */ @Component({ - templateUrl:'./sshSettingsTab.component.pug', + templateUrl: './sshSettingsTab.component.pug', }) export class SSHSettingsTabComponent { Platform = Platform diff --git a/tabby-telnet/src/components/telnetProfileSettings.component.ts b/tabby-telnet/src/components/telnetProfileSettings.component.ts index 6782289a..bc4face8 100644 --- a/tabby-telnet/src/components/telnetProfileSettings.component.ts +++ b/tabby-telnet/src/components/telnetProfileSettings.component.ts @@ -6,7 +6,7 @@ import { TelnetProfile } from '../session' /** @hidden */ @Component({ - templateUrl:'./telnetProfileSettings.component.pug', + templateUrl: './telnetProfileSettings.component.pug', }) export class TelnetProfileSettingsComponent implements ProfileSettingsComponent { profile: TelnetProfile diff --git a/tabby-terminal/src/components/appearanceSettingsTab.component.ts b/tabby-terminal/src/components/appearanceSettingsTab.component.ts index 96b5b396..eb6f18b3 100644 --- a/tabby-terminal/src/components/appearanceSettingsTab.component.ts +++ b/tabby-terminal/src/components/appearanceSettingsTab.component.ts @@ -7,7 +7,7 @@ import { ConfigService, getCSSFontFamily, PlatformService, ThemesService } from /** @hidden */ @Component({ - templateUrl:'./appearanceSettingsTab.component.pug', + templateUrl: './appearanceSettingsTab.component.pug', styleUrls: ['./appearanceSettingsTab.component.scss'], }) export class AppearanceSettingsTabComponent { diff --git a/tabby-terminal/src/components/colorPicker.component.ts b/tabby-terminal/src/components/colorPicker.component.ts index c434104d..3defa689 100644 --- a/tabby-terminal/src/components/colorPicker.component.ts +++ b/tabby-terminal/src/components/colorPicker.component.ts @@ -3,7 +3,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core' /** @hidden */ @Component({ selector: 'color-picker', - templateUrl:'./colorPicker.component.pug', + templateUrl: './colorPicker.component.pug', styleUrls: ['./colorPicker.component.scss'], }) export class ColorPickerComponent { diff --git a/tabby-terminal/src/components/colorSchemePreview.component.ts b/tabby-terminal/src/components/colorSchemePreview.component.ts index 96c95514..a64ed5cb 100644 --- a/tabby-terminal/src/components/colorSchemePreview.component.ts +++ b/tabby-terminal/src/components/colorSchemePreview.component.ts @@ -5,7 +5,7 @@ import { TerminalColorScheme } from '../api/interfaces' /** @hidden */ @Component({ selector: 'color-scheme-preview', - templateUrl:'./colorSchemePreview.component.pug', + templateUrl: './colorSchemePreview.component.pug', styleUrls: ['./colorSchemePreview.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) diff --git a/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts b/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts index b795d5c7..03443ea4 100644 --- a/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts +++ b/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts @@ -11,7 +11,7 @@ _('Search color schemes') /** @hidden */ @Component({ - templateUrl:'./colorSchemeSettingsTab.component.pug', + templateUrl: './colorSchemeSettingsTab.component.pug', styleUrls: ['./colorSchemeSettingsTab.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) diff --git a/tabby-terminal/src/components/loginScriptsSettings.component.ts b/tabby-terminal/src/components/loginScriptsSettings.component.ts index 3aa7491d..e59a603b 100644 --- a/tabby-terminal/src/components/loginScriptsSettings.component.ts +++ b/tabby-terminal/src/components/loginScriptsSettings.component.ts @@ -7,7 +7,7 @@ import { LoginScript, LoginScriptsOptions } from '../middleware/loginScriptProce /** @hidden */ @Component({ selector: 'login-scripts-settings', - templateUrl:'./loginScriptsSettings.component.pug', + templateUrl: './loginScriptsSettings.component.pug', }) export class LoginScriptsSettingsComponent { @Input() options: LoginScriptsOptions diff --git a/tabby-terminal/src/components/searchPanel.component.ts b/tabby-terminal/src/components/searchPanel.component.ts index 6fbfb2b9..83c84047 100644 --- a/tabby-terminal/src/components/searchPanel.component.ts +++ b/tabby-terminal/src/components/searchPanel.component.ts @@ -5,7 +5,7 @@ import { ConfigService, NotificationsService, TranslateService } from 'tabby-cor @Component({ selector: 'search-panel', - templateUrl:'./searchPanel.component.pug', + templateUrl: './searchPanel.component.pug', styleUrls: ['./searchPanel.component.scss'], }) export class SearchPanelComponent { diff --git a/tabby-terminal/src/components/streamProcessingSettings.component.ts b/tabby-terminal/src/components/streamProcessingSettings.component.ts index 2bc196dd..4603c362 100644 --- a/tabby-terminal/src/components/streamProcessingSettings.component.ts +++ b/tabby-terminal/src/components/streamProcessingSettings.component.ts @@ -6,7 +6,7 @@ import { StreamProcessingOptions } from '../middleware/streamProcessing' /** @hidden */ @Component({ selector: 'stream-processing-settings', - templateUrl:'./streamProcessingSettings.component.pug', + templateUrl: './streamProcessingSettings.component.pug', }) export class StreamProcessingSettingsComponent { @Input() options: StreamProcessingOptions diff --git a/tabby-terminal/src/components/terminalSettingsTab.component.ts b/tabby-terminal/src/components/terminalSettingsTab.component.ts index f7c53485..733dba2f 100644 --- a/tabby-terminal/src/components/terminalSettingsTab.component.ts +++ b/tabby-terminal/src/components/terminalSettingsTab.component.ts @@ -3,7 +3,7 @@ import { ConfigService, HostAppService, Platform, PlatformService, altKeyName, m /** @hidden */ @Component({ - templateUrl:'./terminalSettingsTab.component.pug', + templateUrl: './terminalSettingsTab.component.pug', }) export class TerminalSettingsTabComponent { Platform = Platform diff --git a/tabby-terminal/src/components/terminalToolbar.component.ts b/tabby-terminal/src/components/terminalToolbar.component.ts index 6962269a..61c7915f 100644 --- a/tabby-terminal/src/components/terminalToolbar.component.ts +++ b/tabby-terminal/src/components/terminalToolbar.component.ts @@ -6,7 +6,7 @@ import { BaseTerminalTabComponent } from '../api/baseTerminalTab.component' /** @hidden */ @Component({ selector: 'terminal-toolbar', - templateUrl:'./terminalToolbar.component.pug', + templateUrl: './terminalToolbar.component.pug', styleUrls: ['./terminalToolbar.component.scss'], }) export class TerminalToolbarComponent { diff --git a/tabby-web/src/components/messageBoxModal.component.ts b/tabby-web/src/components/messageBoxModal.component.ts index a0749dc3..866b38b2 100644 --- a/tabby-web/src/components/messageBoxModal.component.ts +++ b/tabby-web/src/components/messageBoxModal.component.ts @@ -4,7 +4,7 @@ import { BaseComponent, HotkeysService, MessageBoxOptions } from 'tabby-core' /** @hidden */ @Component({ - templateUrl:'./messageBoxModal.component.pug', + templateUrl: './messageBoxModal.component.pug', }) export class MessageBoxModalComponent extends BaseComponent { @Input() options: MessageBoxOptions