Skip to content

Commit

Permalink
fixed eslint errors from npm run check
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
  • Loading branch information
jeromy-cannon committed Dec 23, 2024
1 parent 6d7522c commit dd13b95
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/core/lease/lease_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {Flags as flags} from '../../commands/flags.js';
import {ConfigManager} from '../config_manager.js';
import {K8} from '../k8.js';
import {SoloLogger} from '../logging.js';
import {type Lease, LeaseRenewalService} from './lease.js';
import type {Lease, LeaseRenewalService} from './lease.js';
import {IntervalLease} from './interval_lease.js';
import {LeaseHolder} from './lease_holder.js';
import {LeaseAcquisitionError} from './lease_errors.js';
Expand Down
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ import yargs from 'yargs';
import {hideBin} from 'yargs/helpers';
import 'dotenv/config';
import path from 'path';
import 'reflect-metadata';
import './core/container_init.js';
import {ListrLogger} from 'listr2';

import {Flags as flags} from './commands/flags.js';
import * as commands from './commands/index.js';
import {HelmDependencyManager, DependencyManager} from './core/dependency_managers/index.js';
import {DependencyManager} from './core/dependency_managers/index.js';
import * as constants from './core/constants.js';
import {PackageDownloader} from './core/package_downloader.js';
import {Helm} from './core/helm.js';
Expand Down
1 change: 0 additions & 1 deletion test/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import * as chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import sinonChai from 'sinon-chai';
import 'reflect-metadata';
import {resetTestContainer} from './test_container.js';

resetTestContainer();
Expand Down
4 changes: 1 addition & 3 deletions test/unit/commands/base.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,13 @@ import {ConfigManager} from '../../../src/core/config_manager.js';
import {LocalConfig} from '../../../src/core/config/local_config.js';
import {RemoteConfigManager} from '../../../src/core/config/remote/remote_config_manager.js';
import {K8} from '../../../src/core/k8.js';
import * as logging from '../../../src/core/logging.js';
import {BaseCommand} from '../../../src/commands/base.js';
import {Flags as flags} from '../../../src/commands/flags.js';
import sinon from 'sinon';
import {container} from 'tsyringe-neo';
import {SoloLogger} from '../../../src/core/logging.js';
import {resetTestContainer} from '../../test_container.js';

describe.only('BaseCommand', () => {
describe('BaseCommand', () => {
let helm: Helm;
let chartManager: ChartManager;
let configManager: ConfigManager;
Expand Down

0 comments on commit dd13b95

Please sign in to comment.