mirror of
https://github.com/Eugeny/tabby.git
synced 2025-03-31 15:50:28 +08:00
lint typescript-eslint/consistent-indexed-object-style
This commit is contained in:
parent
2ef3a81dd8
commit
aacc603309
@ -117,6 +117,5 @@ rules:
|
||||
'@typescript-eslint/prefer-enum-initializers': off
|
||||
'@typescript-eslint/no-implicit-any-catch': off
|
||||
'@typescript-eslint/member-ordering': off
|
||||
'@typescript-eslint/consistent-indexed-object-style': off
|
||||
'@typescript-eslint/no-var-requires': off
|
||||
'@typescript-eslint/no-shadow': off
|
||||
|
@ -33,5 +33,5 @@ export abstract class ConfigProvider {
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
platformDefaults: {[platform: string]: any} = {}
|
||||
platformDefaults: Record<string, any> = {}
|
||||
}
|
||||
|
@ -258,7 +258,7 @@ export class HostAppService {
|
||||
/**
|
||||
* Notifies other windows of config file changes
|
||||
*/
|
||||
broadcastConfigChange (configStore: {[k: string]: any}): void {
|
||||
broadcastConfigChange (configStore: Record<string, any>): void {
|
||||
this.electron.ipcRenderer.send('app:config-change', configStore)
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ export class TouchbarService {
|
||||
private tabsSegmentedControl: TouchBarSegmentedControl
|
||||
private buttonsSegmentedControl: TouchBarSegmentedControl
|
||||
private tabSegments: SegmentedControlSegment[] = []
|
||||
private nsImageCache: {[id: string]: NativeImage} = {}
|
||||
private nsImageCache: Record<string, NativeImage> = {}
|
||||
|
||||
private constructor (
|
||||
private app: AppService,
|
||||
|
@ -19,8 +19,8 @@ export class PluginsSettingsTabComponent {
|
||||
@Input() availablePlugins$: Observable<PluginInfo[]>
|
||||
@Input() availablePluginsQuery$ = new BehaviorSubject<string>('')
|
||||
@Input() availablePluginsReady = false
|
||||
@Input() knownUpgrades: {[id: string]: PluginInfo|null} = {}
|
||||
@Input() busy: {[id: string]: BusyState} = {}
|
||||
@Input() knownUpgrades: Record<string, PluginInfo|null> = {}
|
||||
@Input() busy: Record<string, BusyState> = {}
|
||||
@Input() erroredPlugin: string
|
||||
@Input() errorMessage: string
|
||||
|
||||
|
@ -41,7 +41,7 @@ export interface SSHConnection {
|
||||
jumpHost?: string
|
||||
agentForward?: boolean
|
||||
warnOnClose?: boolean
|
||||
algorithms?: {[t: string]: string[]}
|
||||
algorithms?: Record<string, string[]>
|
||||
}
|
||||
|
||||
export enum PortForwardType {
|
||||
|
@ -15,9 +15,9 @@ export class EditConnectionModalComponent {
|
||||
connection: SSHConnection
|
||||
hasSavedPassword: boolean
|
||||
|
||||
supportedAlgorithms: {[id: string]: string[]} = {}
|
||||
defaultAlgorithms: {[id: string]: string[]} = {}
|
||||
algorithms: {[id: string]: {[a: string]: boolean}} = {}
|
||||
supportedAlgorithms: Record<string, string> = {}
|
||||
defaultAlgorithms: Record<string, string> = {}
|
||||
algorithms: Record<string, Record<string, boolean>> = {}
|
||||
|
||||
constructor (
|
||||
public config: ConfigService,
|
||||
|
@ -14,7 +14,7 @@ import { PromptModalComponent } from './promptModal.component'
|
||||
export class SSHSettingsTabComponent {
|
||||
connections: SSHConnection[]
|
||||
childGroups: SSHConnectionGroup[]
|
||||
groupCollapsed: {[id: string]: boolean} = {}
|
||||
groupCollapsed: Record<string, boolean> = {}
|
||||
|
||||
constructor (
|
||||
public config: ConfigService,
|
||||
|
@ -37,7 +37,7 @@ export interface Shell {
|
||||
name?: string
|
||||
command: string
|
||||
args?: string[]
|
||||
env: {[id: string]: string}
|
||||
env: Record<string, string>
|
||||
|
||||
/**
|
||||
* Base path to which shell's internal FS is relative
|
||||
|
@ -331,7 +331,7 @@ export class Session extends BaseSession {
|
||||
/** @hidden */
|
||||
@Injectable({ providedIn: 'root' })
|
||||
export class SessionsService {
|
||||
sessions: {[id: string]: BaseSession} = {}
|
||||
sessions: Record<string, BaseSession> = {}
|
||||
logger: Logger
|
||||
private lastID = 0
|
||||
|
||||
|
@ -16,7 +16,7 @@ try {
|
||||
// WSL Distribution List
|
||||
// https://docs.microsoft.com/en-us/windows/wsl/install-win10#install-your-linux-distribution-of-choice
|
||||
/* eslint-disable quote-props */
|
||||
const wslIconMap: { [key: string]: string } = {
|
||||
const wslIconMap: Record<string, string> = {
|
||||
'Alpine': require('../icons/alpine.svg'),
|
||||
'Debian': require('../icons/debian.svg'),
|
||||
'kali-linux': require('../icons/linux.svg'),
|
||||
|
Loading…
x
Reference in New Issue
Block a user